dhamaso / ufd

Automatically exported from code.google.com/p/ufd
GNU General Public License v2.0
0 stars 0 forks source link

listWidthFixed does not work with jQuery 1.4.3 + #64

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
As of jQuery 1.4.3, .css('property',null) no longer clears the property. In 
1.4.2, and previous versions, the property was deleted as if it had never been 
set.

Line 95:
this.listWrapper.css({"width": null, "min-width": null});

needs to change to:
this.listWrapper.css({"width": "", "min-width": ""});

Original issue reported on code.google.com by BStruth...@gmail.com on 9 Mar 2012 at 8:34

GoogleCodeExporter commented 9 years ago
Yup you are right, my bad.  Here is the associated JQuery ticket:

http://bugs.jquery.com/ticket/7233

Original comment by thetoolman on 21 May 2012 at 4:08

GoogleCodeExporter commented 9 years ago
(and i fixed this in trunk)

Original comment by thetoolman on 21 May 2012 at 4:08

GoogleCodeExporter commented 9 years ago
Issue 36 has been merged into this issue.

Original comment by thetoolman on 22 May 2012 at 10:01