diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-09-29 17:36:45 -0700 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-09-29 17:36:45 -0700 |
commit | a2ddfd51072952969792cd3b503e573ea8f18d30 (patch) | |
tree | cd7e8a3307f3665fea9966d2124536facc8d35e2 /ui | |
parent | 99b71a51c8cec70ab7ebccf61d6d388ef114d92d (diff) | |
download | jquery-ui-a2ddfd51072952969792cd3b503e573ea8f18d30.tar.gz jquery-ui-a2ddfd51072952969792cd3b503e573ea8f18d30.zip |
Widget: Added create event. Fixes #6126 - Widget: Add create event.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.widget.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js index 866f7441e..bc6408125 100644 --- a/ui/jquery.ui.widget.js +++ b/ui/jquery.ui.widget.js @@ -154,6 +154,7 @@ $.Widget.prototype = { }); this._create(); + this._trigger( "create" ); this._init(); }, _create: function() {}, |