r105427 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r105426‎ | r105427 | r105428 >
Date:13:17, 7 December 2011
Author:santhosh
Status:ok
Tags:
Comment:
Avoid showing the no-op link if there are no input methods available.
Modified paths:
  • /trunk/extensions/Narayam/resources/ext.narayam.core.js (modified) (history)

Diff [purge]

Index: trunk/extensions/Narayam/resources/ext.narayam.core.js
@@ -555,7 +555,7 @@
556556
557557 if ( !haveSchemes ) {
558558 // No schemes available, don't show the tool
559 - return false;
 559+ return null;
560560 }
561561
562562 // Event listener for scheme selection.
@@ -638,6 +638,9 @@
639639 */
640640 this.buildMenu = function() {
641641 var $menuItemsDiv = that.buildMenuItems();
 642+ if( $menuItemsDiv == null ) {
 643+ return;
 644+ }
642645 var $menu = $( '<div>' )
643646 .attr( 'id', 'narayam-menu' )
644647 .addClass( 'narayam-menu' );

Status & tagging log