diff options
author | Klaus Hartl <klaus.hartl@googlemail.com> | 2009-01-10 12:42:30 +0000 |
---|---|---|
committer | Klaus Hartl <klaus.hartl@googlemail.com> | 2009-01-10 12:42:30 +0000 |
commit | ea98580094aa71e69c232255f0c4f8c3aba902ac (patch) | |
tree | 1b1e6ae46d976f934c99c393c47b33c4910e29b4 /ui | |
parent | db738053ca93dbc3e7f501d82952ca2704e8a2d8 (diff) | |
download | jquery-ui-ea98580094aa71e69c232255f0c4f8c3aba902ac.tar.gz jquery-ui-ea98580094aa71e69c232255f0c4f8c3aba902ac.zip |
UI Tabs: fixed incorrectly named argument in try/catch block
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ui.tabs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.tabs.js b/ui/ui.tabs.js index 9d69c156c..f5bd931de 100644 --- a/ui/ui.tabs.js +++ b/ui/ui.tabs.js @@ -487,7 +487,7 @@ $.widget("ui.tabs", { try { o.ajaxOptions.success(r, s); } - catch (event) {} + catch (er) {} // This callback is required because the switch has to take // place after loading has completed. Call last in order to |