Changes between Initial Version and Version 2 of Ticket #4216
- Timestamp:
- Apr 22, 2009, 12:55:21 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4216
- Property Owner set to brandon
-
Ticket #4216 – Description
initial v2 1 1 While the css function correctly handles a single property or height that is passed with a negative value it does not handle multiple key/value pairs. 2 2 Existing code: 3 {{{ 3 4 css: function( key, value ) { 4 5 // ignore negative width and height values … … 16 17 return this.attr( key, value, "curCSS" ); 17 18 } 18 19 }}}