diff options
Diffstat (limited to 'ui/widget.js')
-rw-r--r-- | ui/widget.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/widget.js b/ui/widget.js index eabeb3981..247759579 100644 --- a/ui/widget.js +++ b/ui/widget.js @@ -322,7 +322,9 @@ $.Widget.prototype = { this._init(); }, - _getCreateOptions: $.noop, + _getCreateOptions: function() { + return {}; + }, _getCreateEventData: $.noop, |