Merge "Fixed typo in checking for console.log capability"

This commit is contained in:
Catrope 2012-07-19 01:32:13 +00:00 committed by Gerrit Code Review
commit 326607f34d

View file

@ -7,7 +7,7 @@
* @method
* @param {Mixed} [...] Data to log
*/
ve.log = window.console && window.ve.log ?
ve.log = window.console && window.console.log ?
Function.prototype.bind.call( console.log, console ) : ve.log;
/**