diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-07-11 00:36:36 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-07-11 00:36:36 +0000 |
commit | a716261ab68536f3b22e994137c8b35b5a15a71b (patch) | |
tree | 121b1860ea5b930295ea020263930b4c881ef665 /ui | |
parent | 1a0345365446ef973da55cbeff7f5e8bd0b795cf (diff) | |
download | jquery-ui-a716261ab68536f3b22e994137c8b35b5a15a71b.tar.gz jquery-ui-a716261ab68536f3b22e994137c8b35b5a15a71b.zip |
Dialog: Changed beforeclose option to beforeClose. Fixes #4669 - Dialog: beforeclose option should be beforeClose.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ui.dialog.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js index 68cc31420..a4a9f5625 100644 --- a/ui/ui.dialog.js +++ b/ui/ui.dialog.js @@ -158,7 +158,7 @@ $.widget("ui.dialog", { close: function(event) { var self = this; - if (false === self._trigger('beforeclose', event)) { + if (false === self._trigger('beforeClose', event)) { return; } |