jquery-mobile/tests/unit/listview/listview_pushstate.js
2011-08-27 01:01:54 -07:00

15 lines
No EOL
397 B
JavaScript

(function($) {
asyncTest( "nested pages hash key is always in the hash on default page with no id (replaceState) ", function(){
$.testHelper.pageSequence([
function(){
// Click on the link of the third li element
$('.ui-page-active li:eq(2) a:eq(0)').click();
},
function(){
ok( location.hash.search($.mobile.subPageUrlKey) >= 0 );
start();
}
]);
});
})(jQuery);