-
+ 7D8BD27584517373E8DAFA6DA4C7BDFF9C9D2580D1E9845A70E90D58E4977F02797828A1B612ED65ACCD677F900766E63B8F61B95203039266E61BC159E184E3
mp-wp/wp-includes/js/jquery/jquery.schedule.js
(0 . 0)(1 . 36)
102362
102363 (function($){$.scheduler=function(){this.bucket={};return;};$.scheduler.prototype={schedule:function(){var ctx={"id":null,"time":1000,"repeat":false,"protect":false,"obj":null,"func":function(){},"args":[]};function _isfn(fn){return(!!fn&&typeof fn!="string"&&typeof fn[0]=="undefined"&&RegExp("function","i").test(fn+""));};var i=0;var override=false;if(typeof arguments[i]=="object"&&arguments.length>1){override=true;i++;}
102364 if(typeof arguments[i]=="object"){for(var option in arguments[i])
102365 if(typeof ctx[option]!="undefined")
102366 ctx[option]=arguments[i][option];i++;}
102367 if(typeof arguments[i]=="number"||(typeof arguments[i]=="string"&&arguments[i].match(RegExp("^[0-9]+[smhdw]$"))))
102368 ctx["time"]=arguments[i++];if(typeof arguments[i]=="boolean")
102369 ctx["repeat"]=arguments[i++];if(typeof arguments[i]=="boolean")
102370 ctx["protect"]=arguments[i++];if(typeof arguments[i]=="object"&&typeof arguments[i+1]=="string"&&_isfn(arguments[i][arguments[i+1]])){ctx["obj"]=arguments[i++];ctx["func"]=arguments[i++];}
102371 else if(typeof arguments[i]!="undefined"&&(_isfn(arguments[i])||typeof arguments[i]=="string"))
102372 ctx["func"]=arguments[i++];while(typeof arguments[i]!="undefined")
102373 ctx["args"].push(arguments[i++]);if(override){if(typeof arguments[1]=="object"){for(var option in arguments[0])
102374 if(typeof ctx[option]!="undefined"&&typeof arguments[1][option]=="undefined")
102375 ctx[option]=arguments[0][option];}
102376 else{for(var option in arguments[0])
102377 if(typeof ctx[option]!="undefined")
102378 ctx[option]=arguments[0][option];}
102379 i++;}
102380 ctx["_scheduler"]=this;ctx["_handle"]=null;var match=String(ctx["time"]).match(RegExp("^([0-9]+)([smhdw])$"));if(match&&match[0]!="undefined"&&match[1]!="undefined")
102381 ctx["time"]=String(parseInt(match[1])*{s:1000,m:1000*60,h:1000*60*60,d:1000*60*60*24,w:1000*60*60*24*7}[match[2]]);if(ctx["id"]==null)
102382 ctx["id"]=(String(ctx["repeat"])+":"
102383 +String(ctx["protect"])+":"
102384 +String(ctx["time"])+":"
102385 +String(ctx["obj"])+":"
102386 +String(ctx["func"])+":"
102387 +String(ctx["args"]));if(ctx["protect"])
102388 if(typeof this.bucket[ctx["id"]]!="undefined")
102389 return this.bucket[ctx["id"]];if(!_isfn(ctx["func"])){if(ctx["obj"]!=null&&typeof ctx["obj"]=="object"&&typeof ctx["func"]=="string"&&_isfn(ctx["obj"][ctx["func"]]))
102390 ctx["func"]=ctx["obj"][ctx["func"]];else
102391 ctx["func"]=eval("function () { "+ctx["func"]+" }");}
102392 ctx["_handle"]=this._schedule(ctx);this.bucket[ctx["id"]]=ctx;return ctx;},reschedule:function(ctx){if(typeof ctx=="string")
102393 ctx=this.bucket[ctx];ctx["_handle"]=this._schedule(ctx);return ctx;},_schedule:function(ctx){var trampoline=function(){var obj=(ctx["obj"]!=null?ctx["obj"]:ctx);(ctx["func"]).apply(obj,ctx["args"]);if(typeof(ctx["_scheduler"]).bucket[ctx["id"]]!="undefined"&&ctx["repeat"])
102394 (ctx["_scheduler"])._schedule(ctx);else
102395 delete(ctx["_scheduler"]).bucket[ctx["id"]];};return setTimeout(trampoline,ctx["time"]);},cancel:function(ctx){if(typeof ctx=="string")
102396 ctx=this.bucket[ctx];if(typeof ctx=="object"){clearTimeout(ctx["_handle"]);delete this.bucket[ctx["id"]];}}};$.extend({scheduler$:new $.scheduler(),schedule:function(){return $.scheduler$.schedule.apply($.scheduler$,arguments)},reschedule:function(){return $.scheduler$.reschedule.apply($.scheduler$,arguments)},cancel:function(){return $.scheduler$.cancel.apply($.scheduler$,arguments)}});$.fn.extend({schedule:function(){var a=[{}];for(var i=0;i<arguments.length;i++)
102397 a.push(arguments[i]);return this.each(function(){a[0]={"id":this,"obj":this};return $.schedule.apply($,a);});}});})(jQuery);