Fix lint errors

This commit is contained in:
Julian Viereck 2011-10-09 10:37:53 +02:00
parent a6180830f8
commit 20a348fc0c
7 changed files with 342 additions and 421 deletions

View file

@ -9,15 +9,15 @@ var console = {
var args = Array.prototype.slice.call(arguments);
postMessage({
action: 'console_log',
data: args
data: args
});
},
error: function error() {
var args = Array.prototype.slice.call(arguments);
postMessage({
action: 'console_error',
data: args
data: args
});
},