Remember, the `class` symbol is reserved in some environments.
Fixes issue introduced in 9be69ef258
.
pull/1005/head
parent
6f37de2fae
commit
a0177e5d3c
|
@ -150,7 +150,7 @@ linestylefilter.getLineStyleFilter = function(lineLength, aline, textAndClassFun
|
||||||
var disableAuthColorForThisLine = hooks.callAll("disableAuthorColorsForThisLine", {
|
var disableAuthColorForThisLine = hooks.callAll("disableAuthorColorsForThisLine", {
|
||||||
linestylefilter: linestylefilter,
|
linestylefilter: linestylefilter,
|
||||||
text: txt,
|
text: txt,
|
||||||
class: cls
|
"class": cls
|
||||||
}, " ", " ", "");
|
}, " ", " ", "");
|
||||||
var disableAuthors = (disableAuthColorForThisLine==null||disableAuthColorForThisLine.length==0)?false:disableAuthColorForThisLine[0];
|
var disableAuthors = (disableAuthColorForThisLine==null||disableAuthColorForThisLine.length==0)?false:disableAuthColorForThisLine[0];
|
||||||
while (txt.length > 0)
|
while (txt.length > 0)
|
||||||
|
|
Loading…
Reference in New Issue