id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
1994,slideDown does not reset height after stopped,holgerh,davidserduke,"When slideDown() is activated on an element and stopped before it has been completed, the height of the element is not reset to the initial value. The next time slideDown is activated the element will slide down only to the (wrong) height in the element.style.

For example an element has (normally) the height of 300px. slideDown is activated, the element slides down but the animation is stopped when it reached 180px. The next time slideDown is activated for this element it will slide down to 180px only but not 300px.

So for now I have to fix this manually by resetting the element.style like this:

$('#sitemapButton').hover(function(){
	$('#sitemapButton .overlay').slideDown();
}, function(){
	$('#sitemapButton .overlay').stop().hide().css('height', '');
});

The code should imho be:

$('#sitemapButton').hover(function(){
	$('#sitemapButton .overlay').slideDown();
}, function(){
	$('#sitemapButton .overlay').stop().hide();
});",enhancement,closed,major,1.2.2,effects,1.2.1,fixed,,,,
