From 3ad61669910837d04ae6f10e8c315b722acd4af4 Mon Sep 17 00:00:00 2001 From: scottjehl Date: Wed, 13 Oct 2010 18:29:42 -0400 Subject: [PATCH] scroll to top before page transition as well. That way the loading screen will show up without having to position it. --- js/jquery.mobile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/jquery.mobile.js b/js/jquery.mobile.js index 71c62519..7310a868 100644 --- a/js/jquery.mobile.js +++ b/js/jquery.mobile.js @@ -156,6 +156,7 @@ // transition between pages - based on transitions from jQtouch function changePage( from, to, transition, back ) { jQuery( document.activeElement ).blur(); + window.scrollTo( 0, 0 ); //trigger before show/hide events from.trigger("beforepagehide", {nextPage: to});