Using jquery mobile and angularjs I am using the Single page template. In the first page angular is working as expected but in subsequent pages it is as if angular is not registered.
When I change to using the Multi-page strategy its working.
I have tried to get angular to work on pageinit:
$(document).delegate("#Page2", "pageinit", function () {
angular.bootstrap($("#Page2"), ['APP']);
});
I also tried the suggestions how to reinitialize an angularjs application with no luck.
I am using jqm 1.3.0-rc.1 and the jquery-mobile-angular-adapter is not playing nicely with it. Is there any way that I can get angular to work on subsequent pages.