Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Code Block
languagejs
<script type="text/javascript">
if ( window.location.href.indexOf("/mobsted-app") > -1 ) {
window.addEventListener("load", function(event) {
window.addEventListener('pwalessinited', function() {
pwaless.showWidget('main');
});
});
}
</script>



  1. that the address of your new page is a part of this code - /mobsted-app
  2. the name of your install prompt's widget that will pop up is main, you can change it to any other, MAKE SURE YOU HAVE SUCH A WIDGET IN THE APP

...