Compatibility with jQuery 1.10
removeAttr("disabled') is no longer correct with the most recent version of jQuery. Should use prop("disabled", false) instead.
This commit is contained in:
parent
9e7dde66b7
commit
5bd41fc00c
@ -1854,7 +1854,7 @@ the specific language governing permissions and limitations under the Apache Lic
|
||||
this.parent.close.apply(this, arguments);
|
||||
|
||||
params = params || {focus: true};
|
||||
this.focusser.removeAttr("disabled");
|
||||
this.focusser.prop("disabled", false);
|
||||
|
||||
if (params.focus) {
|
||||
this.focusser.focus();
|
||||
@ -1866,7 +1866,7 @@ the specific language governing permissions and limitations under the Apache Lic
|
||||
if (this.opened()) {
|
||||
this.close();
|
||||
} else {
|
||||
this.focusser.removeAttr("disabled");
|
||||
this.focusser.prop("disabled", false);
|
||||
this.focusser.focus();
|
||||
}
|
||||
},
|
||||
@ -1879,7 +1879,7 @@ the specific language governing permissions and limitations under the Apache Lic
|
||||
// single
|
||||
cancel: function () {
|
||||
this.parent.cancel.apply(this, arguments);
|
||||
this.focusser.removeAttr("disabled");
|
||||
this.focusser.prop("disabled", false);
|
||||
this.focusser.focus();
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user