[jquery-dev] Re: problem with use of null in jQuery.speed

2009-12-05 Thread daltonlp
I hit this too. Logged as bug 5557: http://dev.jquery.com/ticket/5557 The issue still exists in 1.4a1. - Lloyd On Sep 22, 6:25 am, weepy jonah...@gmail.com wrote: recently had a problem here ... on line 3968 of jquery.js        speed: function(speed, easing, fn) {                 var opt

Re: [jquery-dev] Re: problem with use of null in jQuery.speed

2009-12-05 Thread John Resig
Just landed the fix: http://github.com/jquery/jquery/commit/b776e2b79a5b051fba3091b0b5057ae14950f7cc Thanks! --John On Fri, Dec 4, 2009 at 10:52 PM, daltonlp dalto...@gmail.com wrote: I hit this too.  Logged as bug 5557: http://dev.jquery.com/ticket/5557 The issue still exists in 1.4a1.

Re: [jquery-dev] Re: problem with use of null in jQuery.speed

2009-12-05 Thread Julian Aubourg
Hey John, saw my comment here: http://github.com/jquery/jquery/commit/25b0ba9f9612583033b902a0e40345463a3a71d0? 2009/12/5 John Resig jere...@gmail.com Just landed the fix: http://github.com/jquery/jquery/commit/b776e2b79a5b051fba3091b0b5057ae14950f7cc Thanks! --John On Fri, Dec 4,

[jquery-dev] Re: jQuery 1.4 Alpha 1 Released

2009-12-05 Thread DBJDBJ
The joys of the merge concept ;o) On Dec 5, 2:19 am, John Resig jere...@gmail.com wrote: Shamed Yehuda into fixing it:http://github.com/jquery/jquery/commit/d684122be0ce3484fb9a4ead11db98... ;) Thanks for the catch! --John On Fri, Dec 4, 2009 at 9:03 PM, helianthus

[jquery-dev] Crash with $().attr(-moz-border-radius,6px) or -webkit-border-radius

2009-12-05 Thread MKoistinen
Greetings, I'm using 1.3.2 and I've discovered that if I attempt this line: $(#messagebox).attr(-moz-border-radius,8px).attr(-webkit- border-radius,8px); Bad things happen. Specifically, JS stops processing and the browser (Chrome in this case, but the 'crash' happens in all browsers I've

Re: [jquery-dev] Crash with $().attr(-moz-border-radius,6px) or -webkit-border-radius

2009-12-05 Thread Mike Taylor
You're probably getting the Exception 5 due to the - in the attribute name, which is illegal. That said, there's no such thing as a -moz/webkit-border-radius attribute--those are CSS properties, which when paired with legal values can reside in the style attribute of an element, e.g.: