Index: trunk/extensions/Narayam/js/ext.narayam.core.js |
— | — | @@ -499,6 +499,15 @@ |
500 | 500 | $checkbox |
501 | 501 | .attr( 'title', mw.msg( 'narayam-checkbox-tooltip' ) ) |
502 | 502 | .click( that.toggle ); |
| 503 | + //workaround for IE bug - activex components like input fields coming on top of everything. |
| 504 | + //TODO: is there a better solution other than hiding it on hover? |
| 505 | + if ( $.browser.msie ) { |
| 506 | + $("#narayam-menu").hover(function(){ |
| 507 | + $("#searchform").css({ visibility: "hidden" }); |
| 508 | + },function(){ |
| 509 | + $("#searchform").css({ visibility: "visible" }); |
| 510 | + }); |
| 511 | + } |
503 | 512 | } |
504 | 513 | |
505 | 514 | } )(); |