Opened 13 years ago
Closed 13 years ago
#5965 closed bug (invalid)
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
Change History (1)
comment:1 Changed 13 years ago by
Component: | unfilled → core |
---|---|
Milestone: | 1.4.1 → 1.4.2 |
Resolution: | → invalid |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
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.