1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-13 04:21:51 +02:00

[tomahawk.js] Make Tomahawk.log suck less in non-Tomahawk envs

This commit is contained in:
Dominik Schmidt 2015-01-13 00:04:36 +01:00
parent ae4fe0d62a
commit 178f13acba

View File

@ -31,8 +31,8 @@ if ((typeof Tomahawk === "undefined") || (Tomahawk === null)) {
}
};
},
log: function (message) {
console.log(message);
log: function () {
console.log.apply(arguments);
}
};
}