Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <link rel="manifest" href="manifest.json" id="manifest-link">
  2.  
  3. ngOnInit() {
  4.  
  5. // ... platform detection
  6. if (isiOS) {
  7. const element = document.getElementById('manifest-link');
  8. console.log(`Removing manifest element on iOS, should suppress PWA installation`);
  9. element.remove();
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement