blob: 30829bc63361a0d4c98aa9d10c94e85ad6684beb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
This software is allowed to use under GPL or you need to obtain Commercial or Enterise License
to use it in non-GPL project. Please contact sales@dhtmlx.com for details
*/
(function(){
function backup(obj){
var t = function(){};
t.prototype = obj;
return t;
}
var old = scheduler._load;
scheduler._load=function(url,from){
url=url||this._load_url;
if (typeof url == "object"){
var t = backup(this._loaded);
for (var i=0; i < url.length; i++) {
this._loaded=new t();
old.call(this,url[i],from);
}
} else
old.apply(this,arguments);
}
})();
|