Skip to content

Instantly share code, notes, and snippets.

@lrvick
Forked from mwbrooks/notification.confirm.md
Created May 4, 2011 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save lrvick/955924 to your computer and use it in GitHub Desktop.
Save lrvick/955924 to your computer and use it in GitHub Desktop.
Markdown code block within list item

foo

  1. index is the 0 based index value of the button pressed

  2. label is the text label of the button pressed

         function showConfirm() {
             var confirmDelegate = navigator.notification.confirm(
                 'You are the winner!',  // message
                 'Game Over',            // title
             'Restart,Exit'          // buttonLabels
             );
             confirmDelegate.onAlertDismissed = function(index,label) {
                 // confirm dismissed, take appropriate action
                 console.log('You selected button ' + index + ' with label ' + label);
             }
         };
    
  3. index is the 0 based index value of the button pressed

  4. label is the text label of the button pressed

         function showConfirm() {
             var confirmDelegate = navigator.notification.confirm(
                 'You are the winner!',  // message
                 'Game Over',            // title
             'Restart,Exit'          // buttonLabels
             );
             confirmDelegate.onAlertDismissed = function(index,label) {
                 // confirm dismissed, take appropriate action
                 console.log('You selected button ' + index + ' with label ' + label);
             }
         };
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment