From 975b4d0c344cb874565b28fa8a6d2504513bfb0d Mon Sep 17 00:00:00 2001 From: Kevin Israel Date: Sat, 26 Sep 2015 19:34:47 -0400 Subject: [PATCH] Web installer: Fix collapsing of field help text Follows-up 1e06a9f02f9a. Bug: T112383 Change-Id: I23030f48ce89abc460ac9e7ed3c148893ffb24ef --- mw-config/config.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mw-config/config.js b/mw-config/config.js index d2dc213213..fb637f7906 100644 --- a/mw-config/config.js +++ b/mw-config/config.js @@ -14,15 +14,15 @@ } // 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' ); } ); -- 2.20.1