Skip to main content

Search and Top Navigation

#2915 closed bug (fixed)

Opened May 21, 2008 04:13PM UTC

Closed May 25, 2008 11:15PM UTC

[effects-core] in createWrapper, check if top and left are NaN with isNaN()

Reported by: lrbabe Owned by: paul
Priority: major Milestone: 1.5
Component: ui.effects.core Version: 1.5b4
Keywords: effects, createWrapper, isNaN Cc:
Blocked by: Blocking:
Description

Before setting the wrapper css, createWrapper check whether top and left are number with

if (top.constructor != Number)

which cause problems with IE browsers

We should use

if (isNaN(top))

instead

Attachments (0)
Change History (2)

Changed May 24, 2008 07:17PM UTC by paul comment:1

component: ui.coreeffects.core

Changed May 25, 2008 11:15PM UTC by paul comment:2

resolution: → fixed
status: newclosed

Thanks, fixed!