Disable 'back' button on application Follow
For specific page, add on the page's JavaScript
$(function(){
history.pushState(null, null, location.href);
window.onpopstate = function () {
history.go(1);
};
})
For disabling on the entire application, add to :
apps.common.js (at the final stage of application creation)
Comments
0 comments
Please sign in to leave a comment.