mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
12 lines
186 B
JavaScript
12 lines
186 B
JavaScript
/*
|
|
* mobile init tests
|
|
*/
|
|
(function($){
|
|
|
|
|
|
test( "page element is generated when not present in initial markup", function(){
|
|
ok( $( ".ui-page" ).length, 1 );
|
|
});
|
|
|
|
|
|
})(jQuery);
|