jquery-mobile/tests/unit/widget/widget_init.js

20 lines
536 B
JavaScript
Raw Permalink Normal View History

2011-09-15 22:35:48 +00:00
/*
* mobile widget unit tests
*/
(function($){
var widgetInitialized = false;
2011-09-15 22:35:48 +00:00
module( 'jquery.mobile.widget.js' );
$( "#foo" ).live( 'pageinit', function(){
// ordering sensitive here, the value has to be set after the call
// so that if the widget factory says that its not yet initialized,
// which is an exception, the value won't be set
$( "#foo-slider" ).slider( 'refresh' );
widgetInitialized = true;
2011-09-15 22:35:48 +00:00
});
test( "page is enhanced before init is fired", function() {
ok( widgetInitialized );
2011-09-15 22:35:48 +00:00
});
})( jQuery );