mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 22:23:33 +01:00
Merge pull request #1005 from cweider/fix-ie
Remember, the `class` symbol is reserved in some environments.
This commit is contained in:
commit
9cfcafb852
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue