Initial commit for v2.4.3

This commit is contained in:
usmannasir
2025-08-01 14:56:30 +05:00
commit 6dd7114f6d
4521 changed files with 1795978 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
/**
* Fixed error: "console" is undefined in IE<10 if dev tools are not open
*/
(function(window) {
if (window.console) return;
window.console = (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'.split(',');
var noop = function() {};
var object = {};
var key;
while(key = methods.pop()) {
object[key] = noop;
}
return object;
}());
}(window));