aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2009-07-11 00:36:36 +0000
committerScott González <scott.gonzalez@gmail.com>2009-07-11 00:36:36 +0000
commita716261ab68536f3b22e994137c8b35b5a15a71b (patch)
tree121b1860ea5b930295ea020263930b4c881ef665 /ui
parent1a0345365446ef973da55cbeff7f5e8bd0b795cf (diff)
downloadjquery-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.js2
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;
}