diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js index 18bd0c6a02f..d137b2f6d32 100644 --- a/ui/jquery.ui.widget.js +++ b/ui/jquery.ui.widget.js @@ -148,11 +148,11 @@ $.Widget.prototype = { _init: function() {}, _super: function( method ) { - this.base[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ) ); + return this.base[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ) ); }, _superApply: function( method, args ) { - this.base[ method ].apply( this, args ); + return this.base[ method ].apply( this, args ); }, destroy: function() {