uawdijnntqw1x1x1
IP : 216.73.216.249
Hostname : webm001.cluster110.gra.hosting.ovh.net
Kernel : Linux webm001.cluster110.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
etiennec
/
www
/
b9da6
/
..
/
tmp
/
contact_pj
/
..
/
..
/
f1f54
/
pause.js.tar
/
/
home/etiennec/www/oldsite/prive/javascript/pause.js000066600000001520152503000620016516 0ustar00/* * Jonathan Howard * * jQuery Pause * version 0.2 * * Requires: jQuery 1.0 (tested with svn as of 7/20/2006) * * Feel free to do whatever you'd like with this, just please give credit where * credit is do. * * * * pause() will hold everything in the queue for a given number of milliseconds, * or 1000 milliseconds if none is given. * * * * unpause() will clear the queue of everything of a given type, or 'fx' if no * type is given. */ $.fn.pause = function(milli,type) { milli = milli || 1000; type = type || "fx"; return this.queue(type,function(){ var self = this; setTimeout(function(){ $.dequeue(self); },milli); }); }; $.fn.clearQueue = $.fn.unpause = function(type) { return this.each(function(){ type = type || "fx"; if(this.queue && this.queue[type]) { this.queue[type].length = 0; } }); };home/etiennec/www/prive/javascript/pause.js000066600000001520152503074550015070 0ustar00/* * Jonathan Howard * * jQuery Pause * version 0.2 * * Requires: jQuery 1.0 (tested with svn as of 7/20/2006) * * Feel free to do whatever you'd like with this, just please give credit where * credit is do. * * * * pause() will hold everything in the queue for a given number of milliseconds, * or 1000 milliseconds if none is given. * * * * unpause() will clear the queue of everything of a given type, or 'fx' if no * type is given. */ $.fn.pause = function(milli,type) { milli = milli || 1000; type = type || "fx"; return this.queue(type,function(){ var self = this; setTimeout(function(){ $.dequeue(self); },milli); }); }; $.fn.clearQueue = $.fn.unpause = function(type) { return this.each(function(){ type = type || "fx"; if(this.queue && this.queue[type]) { this.queue[type].length = 0; } }); };
/home/etiennec/www/b9da6/../tmp/contact_pj/../../f1f54/pause.js.tar