From 81375698a2ae3e24e79df6b3ab6a1858b4bc0310 Mon Sep 17 00:00:00 2001 From: Inez Korczynski Date: Mon, 18 Jun 2012 14:48:42 -0700 Subject: [PATCH] Fix minor bug in ve.log --- modules/ve2/ve.debug.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ve2/ve.debug.js b/modules/ve2/ve.debug.js index 9e41ef152c..61e501b616 100644 --- a/modules/ve2/ve.debug.js +++ b/modules/ve2/ve.debug.js @@ -8,7 +8,7 @@ * @param {Mixed} [...] Data to log */ ve.log = window.console && window.ve.log ? - Function.prototype.bind.call( ve.log, console ) : ve.log; + Function.prototype.bind.call( console.log, console ) : ve.log; /** * Logs an object to the console.