From 9051279aee11e569454ce6817d500350cf3d33cf Mon Sep 17 00:00:00 2001 From: Matthieu Marcillaud <marcimat@rezo.net> Date: Sun, 12 Oct 2014 13:22:13 +0000 Subject: [PATCH] =?UTF-8?q?pause.js=20servait=20uniquement=20=C3=A0=20la?= =?UTF-8?q?=20d=C3=A9funte=20page=20article=5Ftous.=20On=20l'enl=C3=A8ve,?= =?UTF-8?q?=20d'autant=20qu'il=20y=20a=20.delay()=20dans=20jquery=20mainte?= =?UTF-8?q?nant=20qui=20peut=20en=20partie=20remplacer.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitattributes | 1 - prive/javascript/pause.js | 41 --------------------------------------- 2 files changed, 42 deletions(-) delete mode 100644 prive/javascript/pause.js diff --git a/.gitattributes b/.gitattributes index a4ebd28a3a..3d38763c00 100644 --- a/.gitattributes +++ b/.gitattributes @@ -466,7 +466,6 @@ prive/javascript/jquery.js -text prive/javascript/jquery.placeholder-label.js -text prive/javascript/login-sha-min.js -text prive/javascript/login.js -text -prive/javascript/pause.js -text prive/javascript/sha256.js -text prive/modeles/formulaire.html -text prive/modeles/mail_inscription.html -text diff --git a/prive/javascript/pause.js b/prive/javascript/pause.js deleted file mode 100644 index f981137cad..0000000000 --- a/prive/javascript/pause.js +++ /dev/null @@ -1,41 +0,0 @@ -/* - * 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; - } - }); -}; \ No newline at end of file -- GitLab