Side navigation
#5038 closed bug (invalid)
Opened August 12, 2009 01:06PM UTC
Closed June 13, 2010 04:17PM UTC
Last modified June 20, 2011 07:54PM UTC
IE error - Invalid argument.
Reported by: | FDisk | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | unfiled | Version: | 1.3.2 |
Keywords: | Cc: | FDisk | |
Blocked by: | Blocking: |
Description
I got IE8
error jquery-1.3.2.js line 1061 character 4
And i found the solution
line: 1060
-- if ( set )
++ if ( set && value != 'NaNpx')
Attachments (0)
Change History (4)
Changed August 12, 2009 01:07PM UTC by comment:1
Changed August 12, 2009 01:08PM UTC by comment:2
-- if ( set ) ++ if ( set && value != 'NaNpx')
sorry for dabble posts
Changed June 13, 2010 04:17PM UTC by comment:3
resolution: | → invalid |
---|---|
status: | new → closed |
If the incoming argument is "NaNpx" there is a problem with the calling code.
Changed June 20, 2011 07:54PM UTC by comment:4
Replying to [comment:3 dmethvin]:
If the incoming argument is "NaNpx" there is a problem with the calling code.
I think this is a bug and exists because of IE's CSS-rendering faults. For example, if element has a min-height defined, then height is set to NaNpx, which in itself throws error in IE. Other browsers are fine.
Style-generated errors should be picked up at code-level, themers shouldn't be made responsible for making features work or not.
line: 1060