Index: trunk/extensions/Narayam/resources/ext.narayam.core.js |
— | — | @@ -660,6 +660,7 @@ |
661 | 661 | var positionFunction = rtlEnv ? "append" : "prepend"; |
662 | 662 | $( '#p-personal ul:first' )[positionFunction]( $li ); |
663 | 663 | $( 'body' ).prepend( $menu ); |
| 664 | + $menu.hide(); |
664 | 665 | $li.click( function( event ) { |
665 | 666 | var menuSide, menuOffset, distanceToEdge; |
666 | 667 | |
— | — | @@ -699,9 +700,7 @@ |
700 | 701 | $menu.removeClass( 'open' ); |
701 | 702 | $menu.hide(); |
702 | 703 | } ); |
703 | | - $menu.click( function( event ) { |
704 | | - event.stopPropagation(); |
705 | | - } ); |
| 704 | + |
706 | 705 | // Workaround for IE bug - activex components like input fields |
707 | 706 | // coming on top of everything. |
708 | 707 | // TODO: is there a better solution other than hiding it on hover? |