Oops, remove console.log

This commit is contained in:
Neil Lalonde 2013-11-27 14:16:28 -05:00
parent 746e115f99
commit 1793b6840a

View File

@ -30,12 +30,10 @@ var $buo = function() {
sheet.innerHTML = style; sheet.innerHTML = style;
} }
catch(e) { catch(e) {
console.log(e);
try { try {
sheet.styleSheet.cssText = style; sheet.styleSheet.cssText = style;
} }
catch(ex) { catch(ex) {
console.log('failed to add the css');
return; return;
} }
} }