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 ca3d451 commit c4e5d73Copy full SHA for c4e5d73
ui/widget.js
@@ -225,12 +225,14 @@ $.widget.bridge = function( name, object ) {
225
}
226
227
if ( !instance ) {
228
- return $.error( "cannot call methods on " + name + " prior to initialization; " +
+ return $.error( "cannot call methods on " + name +
229
+ " prior to initialization; " +
230
"attempted to call method '" + options + "'" );
231
232
233
if ( !$.isFunction( instance[ options ] ) || options.charAt( 0 ) === "_" ) {
- return $.error( "no such method '" + options + "' for " + name + " widget instance" );
234
+ return $.error( "no such method '" + options + "' for " + name +
235
+ " widget instance" );
236
237
238
methodValue = instance[ options ].apply( instance, args );
0 commit comments