=== modified file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/dhis2/dhis2.util.js' --- dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/dhis2/dhis2.util.js 2014-05-06 07:15:52 +0000 +++ dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/dhis2/dhis2.util.js 2014-05-06 07:27:29 +0000 @@ -165,12 +165,28 @@ }; } -/** - * Define a window.log object, and output to console.log if it exists. (this is - * a fix for IE8 and FF 3.6). - */ -window.log = function( str ) { - if( window.console ) { - console.log(str); +// http://stackoverflow.com/questions/3326650/console-is-undefined-error-for-internet-explorer +(function() { + var method; + var noop = function() { + }; + + var methods = [ + 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', + 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', + 'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd', + 'timeStamp', 'trace', 'warn' + ]; + + var length = methods.length; + var console = (window.console = window.console || {}); + + while( length-- ) { + method = methods[length]; + + // Only stub undefined methods. + if( !console[method] ) { + console[method] = noop; + } } -}; +}());