X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;ds=inline;f=src%2Ffx.js;h=87af7e0cb08c26f927c2ff552bfe0497def852a1;hb=8ece9e8fb1278e4e62aeb8896979b2a6815dcb3e;hp=c45edc1ece3ff5c7df04ac75b795edd7cc16d6e4;hpb=97fe63cb4826cbeb74bc0c3a72648f57ae0f0881;p=jquery.git diff --git a/src/fx.js b/src/fx.js index c45edc1..87af7e0 100644 --- a/src/fx.js +++ b/src/fx.js @@ -114,6 +114,9 @@ jQuery.fn.extend({ if ( parts[1] ) end = ((parts[1] == "-" ? -1 : 1) * end) + start; + // Absolutely position numbers + if( typeof val == "number") end = val; + e.custom( start, end, unit ); } else e.custom( start, val, "" ); @@ -146,19 +149,6 @@ jQuery.fn.extend({ }); }, - dequeue: function(type){ - type = type || "fx"; - - return this.each(function(){ - var q = queue(this, type); - - q.shift(); - - if ( q.length ) - q[0].apply( this ); - }); - }, - stop: function(){ var timers = jQuery.timers; @@ -171,18 +161,31 @@ jQuery.fn.extend({ }); -function queue( elem, type, array ) { +var queue = function( elem, type, array ) { if ( !elem ) return; - var queue = jQuery.data( elem, type + "queue" ); + var q = jQuery.data( elem, type + "queue" ); - if ( !queue || array ) - queue = jQuery.data( elem, type + "queue", + if ( !q || array ) + q = jQuery.data( elem, type + "queue", array ? jQuery.makeArray(array) : [] ); - return queue; -} + return q; +}; + +jQuery.fn.dequeue = function(type){ + type = type || "fx"; + + return this.each(function(){ + var q = queue(this, type); + + q.shift(); + + if ( q.length ) + q[0].apply( this ); + }); +}; jQuery.extend({