Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. cordova plugin add cordova-plugin-network-information
  2.  
  3. if(navigator.connection.type == "none"){
  4. $ionicLoading.hide()
  5. $ionicPopup.alert({
  6. title: "Internet Disconnected",
  7. content: "There is no internet connection. Please check the connection and try again."
  8. })
  9. .then(function(result) {
  10. ionic.Platform.exitApp();
  11. });
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement