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 1ed853f commit 7312933Copy full SHA for 7312933
tests/unit/widget/widget_core.js
@@ -20,7 +20,7 @@ test( "widget creation", function() {
20
21
$.widget( "ui.testWidget", myPrototype );
22
ok( $.isFunction( $.ui.testWidget ), "constructor was created" );
23
- equal( "object", typeof $.ui.testWidget.prototype, "prototype was created" );
+ equal( typeof $.ui.testWidget.prototype, "object", "prototype was created" );
24
equal( $.ui.testWidget.prototype._create, myPrototype._create,
25
"create function is copied over" );
26
equal( $.ui.testWidget.prototype.creationTest, myPrototype.creationTest,
0 commit comments