From: Kevin Israel Date: Sat, 26 Sep 2015 23:34:47 +0000 (-0400) Subject: Web installer: Fix collapsing of field help text X-Git-Tag: 1.31.0-rc.0~9747^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=975b4d0c344cb874565b28fa8a6d2504513bfb0d;p=lhc%2Fweb%2Fwiklou.git Web installer: Fix collapsing of field help text Follows-up 1e06a9f02f9a. Bug: T112383 Change-Id: I23030f48ce89abc460ac9e7ed3c148893ffb24ef --- 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' ); } );