Skip to content

Instantly share code, notes, and snippets.

@Dosant
Created February 26, 2017 06:51
Show Gist options
  • Save Dosant/d3a8fd49edd98fd1a65b6146542e37f3 to your computer and use it in GitHub Desktop.
Save Dosant/d3a8fd49edd98fd1a65b6146542e37f3 to your computer and use it in GitHub Desktop.
function ask(question, yes, no) {
if (confirm(question)) {
yes();
} else {
no();
}
}
function showOk() {
alert( "Вы согласились." );
}
function showCancel() {
alert( "Вы отменили выполнение." );
}
// использование
ask("Вы согласны?", showOk, showCancel);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment