Do not assume window object exists

pull/1081/head
Chia-liang Kao 2012-10-23 15:21:05 +08:00
parent 429651874f
commit 8199bf8377
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ function makeContentCollector(collectStyles, browser, apool, domInterface, class
['insertorder', 'first']
].concat(
_.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];
})
);