From 81dc75d5382b5f4e5a9b7d704b2ba7e338b4fca4 Mon Sep 17 00:00:00 2001 From: oyyd Date: Fri, 14 Nov 2014 13:53:13 +0800 Subject: [PATCH] Fix #43 --- src/js/menu.jsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/js/menu.jsx b/src/js/menu.jsx index b81237198a3141..c42d5976535918 100644 --- a/src/js/menu.jsx +++ b/src/js/menu.jsx @@ -230,11 +230,9 @@ var Menu = React.createClass({ //Open the menu $el.css('height', this._initialMenuHeight); - //Set the overflow to visible after the animation is done so - //that other nested menus can be shown - CssEvent.onTransitionEnd($el, function() { - $innerContainer.css('overflow', 'visible'); - }); + //Set the overflow to visible so that other nested menus + //can be shown + $innerContainer.css('overflow', 'visible'); } else {