Skip to content

Instantly share code, notes, and snippets.

@UskeS
Created May 31, 2018 03:04
Show Gist options
  • Save UskeS/43e62d477aaa4943da6acb1e0f95f5da to your computer and use it in GitHub Desktop.
Save UskeS/43e62d477aaa4943da6acb1e0f95f5da to your computer and use it in GitHub Desktop.
Confirm dialog method in GoogleAppsScript.
function confirm (mes){
var res = Browser.msgBox(mes, Browser.Buttons.OK_CANCEL);
if (res === "ok"){
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment