Side navigation
#5965 closed bug (invalid)
Opened January 28, 2010 02:09PM UTC
Closed January 29, 2010 05:36AM UTC
this.nodeValue differs between 1.4.0 and 1.4.1
Reported by: | NickTulett | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4.2 |
Component: | core | Version: | 1.4.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
$("#test td").wrapInner(function() {
return "<div style='background-color:#2C3D5A;color:white;width:" + (5 * this.nodeValue) + "px'> </div>";
})
Should create a div in a table cell with the width defined by the value contained within that cell. This works in 1.4.0 but not 1.4.1
Attachments (0)
Change History (1)
Changed January 29, 2010 05:36AM UTC by comment:1
component: | unfilled → core |
---|---|
milestone: | 1.4.1 → 1.4.2 |
resolution: | → invalid |
status: | new → closed |
As mentioned in the 1.4.1 release notes this was broken in 1.4 (it was pointing back to the wrong element - the text node, in this case, instead of the td, which is correct). You'll need to adjust your code accordingly.