We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1beb8a9 commit e9a2661Copy full SHA for e9a2661
ui/jquery.ui.widget.js
@@ -148,11 +148,11 @@ $.Widget.prototype = {
148
_init: function() {},
149
150
_super: function( method ) {
151
- this.base[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ) );
+ return this.base[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ) );
152
},
153
154
_superApply: function( method, args ) {
155
- this.base[ method ].apply( this, args );
+ return this.base[ method ].apply( this, args );
156
157
158
destroy: function() {
0 commit comments