Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. ionic.Platform.ready(function () {
  2. if(window.Connection) {
  3.  
  4. if(navigator.connection.type == Connection.NONE) {
  5. internetConnectionOff();
  6. } else {
  7. internetConnectionOn();
  8. }
  9. }
  10.  
  11. });
  12.  
  13. function internetConnectionOn() {
  14.  
  15. loadMapsApi();
  16. }
  17.  
  18. function internetConnectionOff() {
  19. alert("Brak połączenia z internetem");
  20. ionic.Platform.exitApp();
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement