View | Details | Raw Unified | Return to bug 14389
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/pages/preferences.js (-2 / +1 lines)
Lines 63-69 $( document ).ready( function () { Link Here
63
    }
63
    }
64
64
65
    $( '.prefs-tab' )
65
    $( '.prefs-tab' )
66
        .find( 'input.preference, textarea.preference' ).on('change', function () {
66
        .find( 'input.preference, textarea.preference' ).on('input', function () {
67
            if ( this.defaultValue === undefined || this.value != this.defaultValue ) mark_modified.call( this );
67
            if ( this.defaultValue === undefined || this.value != this.defaultValue ) mark_modified.call( this );
68
        } ).end()
68
        } ).end()
69
        .find( 'select.preference' ).change( mark_modified );
69
        .find( 'select.preference' ).change( mark_modified );
70
- 

Return to bug 14389