http://www.mediawiki.org/wiki/Special:Code/MediaWiki/96204

Revision: 96204
Author:   santhosh
Date:     2011-09-03 16:30:08 +0000 (Sat, 03 Sep 2011)
Log Message:
-----------
workaround for IE bug - activex components like input fields coming on top of 
everything.

Modified Paths:
--------------
    trunk/extensions/Narayam/js/ext.narayam.core.js

Modified: trunk/extensions/Narayam/js/ext.narayam.core.js
===================================================================
--- trunk/extensions/Narayam/js/ext.narayam.core.js     2011-09-03 16:04:09 UTC 
(rev 96203)
+++ trunk/extensions/Narayam/js/ext.narayam.core.js     2011-09-03 16:30:08 UTC 
(rev 96204)
@@ -499,6 +499,15 @@
                $checkbox
                        .attr( 'title', mw.msg( 'narayam-checkbox-tooltip' ) )
                        .click( that.toggle );
+               //workaround for IE bug - activex components like input fields 
coming on top of everything.
+               //TODO: is there a better solution other than hiding it on 
hover?
+               if ( $.browser.msie ) { 
+                       $("#narayam-menu").hover(function(){
+                               $("#searchform").css({ visibility: "hidden" });
+                       },function(){
+                               $("#searchform").css({ visibility: "visible" });
+                       });
+               }       
        }
        
 } )();


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to