mediawiki-extensions-Visual.../modules/ve/ve.debug.js
Trevor Parscal fc63c771ff Fixed typo in checking for console.log capability
Change-Id: I4a3b88e4fd7d57344673572cae24eff5c6078574
2012-07-18 18:30:51 -07:00

24 lines
625 B
JavaScript

/**
* Logs data to the console.
*
* This implementation does nothing, to add a real implmementation ve.debug needs to be loaded.
*
* @static
* @method
* @param {Mixed} [...] Data to log
*/
ve.log = window.console && window.console.log ?
Function.prototype.bind.call( console.log, console ) : ve.log;
/**
* Logs an object to the console.
*
* This implementation does nothing, to add a real implmementation ve.debug needs to be loaded.
*
* @static
* @method
* @param {Object} obj Object to log
*/
ve.dir = window.console && window.console.dir ?
Function.prototype.bind.call( console.dir, console ) : ve.dir;