If anyone else encounters this problem...
By
looking at this function :
$(
"#drawerID"
).data(
"kendoMobileDrawer"
).hide
I found the following was being called :
this
.currentView.scroller.enable()
And by adding this to page two's show event handler, I was able to patch the problem :
$( $(showEvt.view.id) ).data(
"kendoMobileView"
).scroller.enable();
This bug is apparent whether you use <a href="#viewID"> or app.navigate("viewID");