mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 17:06:16 -04:00
Merge pull request #1081 from clkao/develop
Do not assume window object exists
This commit is contained in:
commit
7f158f697b
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ function makeContentCollector(collectStyles, browser, apool, domInterface, class
|
||||||
['insertorder', 'first']
|
['insertorder', 'first']
|
||||||
].concat(
|
].concat(
|
||||||
_.map(state.lineAttributes,function(value,key){
|
_.map(state.lineAttributes,function(value,key){
|
||||||
if (window.console) console.log([key, value])
|
if (typeof(window)!= 'undefined' && window.console) console.log([key, value])
|
||||||
return [key, value];
|
return [key, value];
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue