diff --git a/resources/js/ext.uls.displaysettings.js b/resources/js/ext.uls.displaysettings.js index 3d90e05a..f9bb1b1a 100644 --- a/resources/js/ext.uls.displaysettings.js +++ b/resources/js/ext.uls.displaysettings.js @@ -511,7 +511,7 @@ */ markDirty: function () { this.dirty = true; - this.$parent.$window.find( 'button.uls-settings-apply' ).removeAttr( 'disabled' ); + this.$parent.$window.find( 'button.uls-settings-apply' ).prop( 'disabled', false ); }, /** diff --git a/resources/js/ext.uls.inputsettings.js b/resources/js/ext.uls.inputsettings.js index c08de49f..99417b13 100644 --- a/resources/js/ext.uls.inputsettings.js +++ b/resources/js/ext.uls.inputsettings.js @@ -175,9 +175,9 @@ $inputMethodItem = $( '' ).attr( { name: 'ime', id: imeId, - value: imeId, - checked: selected - } ); + value: imeId + } ) + .prop( 'checked', selected ); $imeLabel.append( $inputMethodItem );