diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-02-05 03:03:50 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-02-05 03:03:50 +0000 |
commit | 9e02f801765abb57f426a8a3116b6bcaa2698126 (patch) | |
tree | e5e7e076eb701dfc3a1d19b2873ccd380627b5a0 /ui/jquery.ui.resizable.js | |
parent | 0b976c4616bfe9c5a4fb976b338a226245cde835 (diff) | |
download | jquery-ui-9e02f801765abb57f426a8a3116b6bcaa2698126.tar.gz jquery-ui-9e02f801765abb57f426a8a3116b6bcaa2698126.zip |
Fixed event prefix in all plugins that don't use the default prefix.
Fixes #5134 - Events not being triggered for drag and drop.
Diffstat (limited to 'ui/jquery.ui.resizable.js')
-rw-r--r-- | ui/jquery.ui.resizable.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/jquery.ui.resizable.js b/ui/jquery.ui.resizable.js index 3512b49be..4ba723884 100644 --- a/ui/jquery.ui.resizable.js +++ b/ui/jquery.ui.resizable.js @@ -15,6 +15,7 @@ (function($) { $.widget("ui.resizable", $.ui.mouse, { + widgetEventPrefix: "resize", options: { alsoResize: false, animate: false, @@ -518,8 +519,7 @@ $.widget("ui.resizable", $.ui.mouse, { }); $.extend($.ui.resizable, { - version: "@VERSION", - eventPrefix: "resize" + version: "@VERSION" }); /* |