From a0177e5d3ca132352d2a33a6a69e47c302c7be93 Mon Sep 17 00:00:00 2001 From: Chad Weider Date: Sun, 16 Sep 2012 18:07:55 -0700 Subject: [PATCH] Remember, the `class` symbol is reserved in some environments. Fixes issue introduced in 9be69ef2582dfc2c1b050041d4586cbd90d20e2c. --- src/static/js/linestylefilter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static/js/linestylefilter.js b/src/static/js/linestylefilter.js index 4231d26b6..c6434b6c2 100644 --- a/src/static/js/linestylefilter.js +++ b/src/static/js/linestylefilter.js @@ -150,7 +150,7 @@ linestylefilter.getLineStyleFilter = function(lineLength, aline, textAndClassFun var disableAuthColorForThisLine = hooks.callAll("disableAuthorColorsForThisLine", { linestylefilter: linestylefilter, text: txt, - class: cls + "class": cls }, " ", " ", ""); var disableAuthors = (disableAuthColorForThisLine==null||disableAuthColorForThisLine.length==0)?false:disableAuthColorForThisLine[0]; while (txt.length > 0)