[jQuery] Re: css method on span reports block?

2009-03-02 Thread sliver
Bump... Is this an intended change in 1.3.2? I don't see anything about it in the release notes... On Mar 1, 1:59 pm, sliver sliver2...@gmail.com wrote: Is this a bug in 1.3.2 then? On Mar 1, 1:16 pm, Frederik Ring frederik.r...@gmail.com wrote: Looks like this is a 1.3.2 issue I think.

[jQuery] Re: css method on span reports block?

2009-03-02 Thread mkmanning
Just as an FYI, in 1.3.2 (haven't looked at what is done in 1.2.6), this is happening at lines 808-811: var computedStyle = defaultView.getComputedStyle( elem, null ); if ( computedStyle ) ret = computedStyle.getPropertyValue( name ); Note that in IE, getting the display at this point

[jQuery] Re: css method on span reports block?

2009-03-01 Thread Frederik Ring
Looks like this is a 1.3.2 issue I think. Just tried it with 1.2.6 and it returned inline in both cases. On Mar 1, 6:31 pm, sliver sliver2...@gmail.com wrote: Im not sure if this is intended, but it leads to some unexpected results: console.log($('span/').css('display')); -- 'block'

[jQuery] Re: css method on span reports block?

2009-03-01 Thread sliver
Is this a bug in 1.3.2 then? On Mar 1, 1:16 pm, Frederik Ring frederik.r...@gmail.com wrote: Looks like this is a 1.3.2 issue I think. Just tried it with 1.2.6 and it returned inline in both cases. On Mar 1, 6:31 pm, sliver sliver2...@gmail.com wrote: Im not sure if this is intended, but