1.2.2 suggestions
1.2.2 suggestions
A few things that bug my mind for the upcoming 1.2.2 release;
1) is the annoyance resolved where in IE6 with slideUp() the element
sometimes would show for a fraction of a second after it already slid
up?
2) perhaps I've missed something, but shouldn't dimensions be adopted
by the Core?
3) I think $.trim should be changed for 1.2.2 into the following, to
not throw errors on wrong argument types (like False or anything other
than string):
trim: function(t){
return typeof t != 'string' ? t : (t||"").replace(/^\s
+|\s+$/g, "");
},
4) In the light of discussion at the following page:
http://groups.google.com/group/jquery-dev/browse_thread/thread/b747f9a937ed93d3
I think $.fn.show() should be changed. One other argument that comes
to mind:
$.fn.show uses ':hidden' as selector, which is explicitly made to
filter on display: none AND visibility: hidden, but it does not work
on visibility. In my opinion this is a crucial bug fix which should no
longer live as a feature.
I really do hope these things may be fixed for 1.2.2, but otherwise,
please consider them for 1.2.3.
Keep up the good work. I'll do some beta testing here in the meantime.