From fe6d9e257824adcd8df8ffa7e5fe2842efea3a27 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Sat, 29 Nov 2008 07:28:10 +0000 Subject: [PATCH] Dont make context listing interruptable. --- content/template.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/template.js b/content/template.js index d1eb61d7..97d380c8 100644 --- a/content/template.js +++ b/content/template.js @@ -15,8 +15,8 @@ const template = { continue; if (sep && n++) ret += sep; - if (interruptable && n % interruptable == 0) - liberator.threadYield(true, true); + //if (interruptable && n % interruptable == 0) + // liberator.threadYield(false, true); ret += val; } return ret;