Browse Source

fix for menu flyout

Former-commit-id: 6e2282256e
Former-commit-id: 6784ad8be5
pull/258/head
Jack Lukic 11 years ago
parent
commit
610042936a
1 changed files with 3 additions and 3 deletions
  1. 6
      node/src/files/javascript/semantic.js

6
node/src/files/javascript/semantic.js

@ -137,13 +137,13 @@ semantic.ready = function() {
$menu
.stop()
.animate({
width: '100px'
width: '105px'
}, 300, function() {
$menu.find('.text').stop().fadeIn(200);
$menu.find('.text').show();
})
;
},
mouseleave: function() {
mouseleave: function(event) {
$menu.find('.text').hide();
$menu
.stop()

Loading…
Cancel
Save