[jQuery] Re: LavaLamp for jQuery 1.2.x?

2007-12-14 Thread Erlend Schei
You basically need two changes: Use the new easing names, and replace the dequeue calls. Instead of doing: replace .each(function() { $.dequeue(this, fx); }) with .stop() around line 84-85. you could replace with $(this).dequeue(fx). But I don't know the difference between stop() and dequeue()

[jQuery] Re: LavaLamp for jQuery 1.2.x?

2007-12-14 Thread Andy Matthews
(English) Subject: [jQuery] Re: LavaLamp for jQuery 1.2.x? FYI Danny... I put your change in place, downloaded the most recent versions of both jQuery (jquery-1.2.1.pack.js), and Easing (jquery.easing.1.3.js) and now each time I mouseover a button I get about 100 js errors, all saying: E.easing

[jQuery] Re: LavaLamp for jQuery 1.2.x?

2007-12-14 Thread Danny
Hi Andy: Erland Schei gave you the answer; the names of the easings changed from the time lavalamp was originally written. Look at http://gsgd.co.uk/sandbox/jquery/easing/ for the correct names. easeOutBack is the classic effect. Danny On Dec 13, 8:29 pm, Andy Matthews [EMAIL PROTECTED] wrote:

[jQuery] Re: LavaLamp for jQuery 1.2.x?

2007-12-13 Thread Andy Matthews
@googlegroups.com Subject: [jQuery] Re: LavaLamp for jQuery 1.2.x? Hey Andy, I just looked on that page and near the bottom on the comments, I found this This plugin is currently incompatible with jQuery 1.2.x. To make it compatible, replace .each(function() { $.dequeue(this, fx); }) with .stop

[jQuery] Re: LavaLamp for jQuery 1.2.x?

2007-12-13 Thread Andy Matthews
Awesome! Thank you!! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Danny Sent: Wednesday, December 12, 2007 11:26 PM To: jQuery (English) Subject: [jQuery] Re: LavaLamp for jQuery 1.2.x? I modified it to run under 1.2, with the most recent

[jQuery] Re: LavaLamp for jQuery 1.2.x?

2007-12-13 Thread Andy Matthews
FYI Danny... I put your change in place, downloaded the most recent versions of both jQuery (jquery-1.2.1.pack.js), and Easing (jquery.easing.1.3.js) and now each time I mouseover a button I get about 100 js errors, all saying: E.easing[this.options.easing || (E.easing.swing ? swing : linear)]

[jQuery] Re: LavaLamp for jQuery 1.2.x?

2007-12-12 Thread Richard Shank
Hey Andy, I just looked on that page and near the bottom on the comments, I found this This plugin is currently incompatible with jQuery 1.2.x. To make it compatible, replace .each(function() { $.dequeue(this, fx); }) with .stop() around line 84-85. I haven't tried it, let us know if it works.