Skip to content

Instantly share code, notes, and snippets.

@NachoMan
Created October 16, 2009 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NachoMan/212064 to your computer and use it in GitHub Desktop.
Save NachoMan/212064 to your computer and use it in GitHub Desktop.
navigator.notification.alert(
"There was an error connecting to the Internet. Would you like to retry?.",
"No Internet connection",
"No",
"Yes",
{
onClose: function(buttonIndex) {
if (buttonIndex == 1)
retryConnection();
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment