mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-24 18:00:28 +00:00
16 lines
No EOL
310 B
JavaScript
16 lines
No EOL
310 B
JavaScript
/*
|
|
* mobile widget unit tests
|
|
*/
|
|
(function($){
|
|
var initFired = false;
|
|
|
|
module( 'jquery.mobile.widget.js' );
|
|
|
|
$( "#foo" ).live( 'pageinit', function(){
|
|
initFired = true;
|
|
});
|
|
|
|
test( "widget init event is fired after markup enhancement has taken place", function() {
|
|
ok( initFired );
|
|
});
|
|
})( jQuery ); |