-
index is the 0 based index value of the button pressed
-
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); } };
-
index is the 0 based index value of the button pressed
-
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); } };
-
-
Save mhaylock/5962240 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment