Bug 14389: Editing a syspref in a textarea does not enable the Save button
authorLiz Rea <liz@catalyst.net.nz>
Tue, 16 Jun 2015 04:12:57 +0000 (16:12 +1200)
committerTomas Cohen Arazi <tomascohen@unc.edu.ar>
Tue, 7 Jul 2015 15:34:41 +0000 (12:34 -0300)
Test plan:
  1. Navigate to the "opaccredits" syspref (or any other textarea, i.e.,
     "Click to Edit", syspref) in the system preferences editor.
  2. Change its contents, by either pasting or typing. The field may not
     be marked as modified, even after you click outside the box.
  3. Apply the patch.
  4. Reload the page and try again; either pasting or typing should mark
     the field as changed and allow you to save.

Signed-off-by: Jesse Weaver <pianohacker@gmail.com>
Confirmed working for normal input, paste and middle-click paste in
Chrome and Firefox in Linux.

Signed-off-by: Jonathan Druart <jonathan.druart@koha-community.org>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Tomas Cohen Arazi <tomascohen@unc.edu.ar>

koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js

index 04135ef..b6537d9 100644 (file)
@@ -63,7 +63,7 @@ $( document ).ready( function () {
     }
 
     $( '.prefs-tab' )
-        .find( 'input.preference, textarea.preference' ).on('change', function () {
+        .find( 'input.preference, textarea.preference' ).on('input', function () {
             if ( this.defaultValue === undefined || this.value != this.defaultValue ) mark_modified.call( this );
         } ).end()
         .find( 'select.preference' ).change( mark_modified );