[jQuery] Re: jQuery.dequeue is not a function

2008-01-16 Thread Vinçange
Your solution is working, but instead of replacing lines in interface, i'd rather add a function to Jquery : ( function( $ ) { $.dequeue = function( a , b ){ return $(a).dequeue(b); }; })( jQuery ); This allows you to use compressed version of interface.js Vin

[jQuery] Re: jQuery.dequeue is not a function

2007-12-16 Thread Dimatrix
@Christiaan: Many thanks for sharing that detail! Similar changes are required on: line 287 of ifxscale.js: change jQuery.dequeue(z.el.get(0), 'interfaceFX'); to jQuery(z.el.get(0)).dequeue('interfaceFX'); Regards Dimitri On Oct 23, 3:34 am, Christiaan van Woudenberg <[EMAIL PR

[jQuery] Re: jQuery.dequeue is not a function

2007-10-22 Thread Christiaan van Woudenberg
I've found a few places in the interface plugin libs where the old version of dequeue is used; they need to be replaced with the new calls to work. The old version took two arguments, the new version uses jQuery chainability. For example: On line 473 of ifx.js change : jQu

[jQuery] Re: jQuery.dequeue is not a function

2007-09-24 Thread Rantony
The same error shows up whenever I call Jquery.stop(); my goal is to prevent all the queued "slow" animations. R1.2 On Sep 13, 2:27 pm, "Rafael Santos" <[EMAIL PROTECTED]> wrote: > I'm getting the same error while testing the release 1.2. > It happens when I fire $.scrollTo().. > >

[jQuery] Re: jQuery.dequeue is not a function

2007-09-13 Thread Rafael Santos
I'm getting the same error while testing the release 1.2. It happens when I fire $.scrollTo().. On 9/12/07, Gordon <[EMAIL PROTECTED]> wrote: > > > Seems to be something caused by an incompatibility with interface. > Once the interface lib and all calls ot it are commented out it > works. > > On S

[jQuery] Re: jQuery.dequeue is not a function

2007-09-12 Thread Gordon
Seems to be something caused by an incompatibility with interface. Once the interface lib and all calls ot it are commented out it works. On Sep 12, 3:27 pm, Stephan Beal <[EMAIL PROTECTED]> wrote: > On Sep 12, 3:10 pm, Gordon <[EMAIL PROTECTED]> wrote: > > > However, I just got the error message

[jQuery] Re: jQuery.dequeue is not a function

2007-09-12 Thread Stephan Beal
On Sep 12, 3:10 pm, Gordon <[EMAIL PROTECTED]> wrote: > However, I just got the error message jQuery.dequeue is not a > functionhttp://localhost/js/jquery/interface/interface_drag.js > Line 8 > > interface_drag.js is basically a barebones version of the jQuery > interface library with just the ba