Web installer: Fix collapsing of field help text
authorKevin Israel <pleasestand@live.com>
Sat, 26 Sep 2015 23:34:47 +0000 (19:34 -0400)
committerKevin Israel <pleasestand@live.com>
Sat, 26 Sep 2015 23:56:38 +0000 (19:56 -0400)
Follows-up 1e06a9f02f9a.

Bug: T112383
Change-Id: I23030f48ce89abc460ac9e7ed3c148893ffb24ef

mw-config/config.js

index d2dc213..fb637f7 100644 (file)
                }
 
                // Set up the help system
-               $( '.mw-help-field-data' )
+               $( '.config-help-field-data' )
                        .hide()
-                       .closest( '.mw-help-field-container' )
-                               .find( '.mw-help-field-hint' )
+                       .closest( '.config-help-field-container' )
+                               .find( '.config-help-field-hint' )
                                        .show()
                                        .click( function () {
                                                $( this )
-                                                       .closest( '.mw-help-field-container' )
-                                                               .find( '.mw-help-field-data' )
+                                                       .closest( '.config-help-field-container' )
+                                                               .find( '.config-help-field-data' )
                                                                        .slideToggle( 'fast' );
                                        } );