mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-04-20 03:02:41 -04: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:
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;
|
||||
|
||||
Reference in New Issue
Block a user