mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 00:30:44 +00:00
Merge "Fixed typo in checking for console.log capability"
This commit is contained in:
commit
326607f34d
|
@ -7,7 +7,7 @@
|
||||||
* @method
|
* @method
|
||||||
* @param {Mixed} [...] Data to log
|
* @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;
|
Function.prototype.bind.call( console.log, console ) : ve.log;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue