" ).testWidget({ option2: "value2" });
});
+test( "._getCreateEventData()", function() {
+ expect( 1 );
+ var data = { foo: "bar" };
+ $.widget( "ui.testWidget", {
+ _getCreateEventData: function() {
+ return data;
+ }
+ });
+ $( "
" ).testWidget({
+ create: function( event, ui ) {
+ strictEqual( ui, data, "event data" );
+ }
+ });
+});
+
test( "re-init", function() {
var div = $( "
" ),
actions = [];
diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js
index 5c8560bfd3..ad03e6f44a 100644
--- a/ui/jquery.ui.widget.js
+++ b/ui/jquery.ui.widget.js
@@ -204,10 +204,11 @@ $.Widget.prototype = {
}
this._create();
- this._trigger( "create" );
+ this._trigger( "create", null, this._getCreateEventData() );
this._init();
},
_getCreateOptions: $.noop,
+ _getCreateEventData: $.noop,
_create: $.noop,
_init: $.noop,