summaryrefslogtreecommitdiff
path: root/src/static
diff options
context:
space:
mode:
authorChad Weider <cweider@oofn.net>2012-09-16 18:07:55 -0700
committerChad Weider <cweider@oofn.net>2012-09-16 18:07:55 -0700
commita0177e5d3ca132352d2a33a6a69e47c302c7be93 (patch)
tree0226df0195f9d0f9ac706cfb8733bf470ecefc87 /src/static
parent6f37de2faef7b46ae5ad223aae1ead16aed1e140 (diff)
downloadetherpad-lite-a0177e5d3ca132352d2a33a6a69e47c302c7be93.zip
Remember, the `class` symbol is reserved in some environments.
Fixes issue introduced in 9be69ef2582dfc2c1b050041d4586cbd90d20e2c.
Diffstat (limited to 'src/static')
-rw-r--r--src/static/js/linestylefilter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/linestylefilter.js b/src/static/js/linestylefilter.js
index 4231d26b..c6434b6c 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)