allowSamePageTransition through mobileinit
I'm working through a Django installation where saved forms are being redirected to a prior page and the form link is no longer active. I'm looking for an example where I can initialize Jquery Mobile to allowsamepagetransition on all pages. Considering I'm only using the fade transition for reloads, this shouldn't be an issue.
$(document).bind("mobileinit", function(){
$.mobile.changePage(what.do.i.put.here.to.bind.this.event.to.all.pages,
{
allowSamePageTransition: true
});
});