| Issue 388: | UL elements get overflow:hidden when animating | |
| 1 person starred this issue and may be notified of changes. | Back to list |
When specifying fx attribute to dynatree, after the toggle animation, the UL element being toggled gets "overflow: hidden", so horizontal scroll will not work if needed.
What version of the dynatree and jQuery are you using?
latest for both
On what operating system and browser?
Chrome on Mac
What DOCTYPE declaration are you using?
HTML5 <!DOCTYPE html>
Please provide any additional information below.
Go to line 386 and replace, this will solve the problem:
var duration = opts.fx.duration || 200,
previousOverflow = $(this.ul).css('overflow');
$(this.ul).animate(opts.fx, duration, function() {
$(this).css('overflow', previousOverflow);
});
May 1, 2014
Project Member
#1
moo...@wwwendt.de
Status:
WontFix
May 2, 2014
Cleanup Scrumboard
Labels:
Milestone-Release2.0
|