mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Datepicker: modified a catch variable to no longer mask an existing variable in scope. Fixed #8138 - datepicker: IE8 does not create a new scope for catch blocks and will cause
This commit is contained in:
parent
b6e1f25ab8
commit
367da95ba5
4
ui/jquery.ui.datepicker.js
vendored
4
ui/jquery.ui.datepicker.js
vendored
@ -620,8 +620,8 @@ $.extend(Datepicker.prototype, {
|
||||
$.datepicker._updateDatepicker(inst);
|
||||
}
|
||||
}
|
||||
catch (event) {
|
||||
$.datepicker.log(event);
|
||||
catch (err) {
|
||||
$.datepicker.log(err);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user