Skip to content

Instantly share code, notes, and snippets.

@davecra
Created July 18, 2017 20:17
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 davecra/8b52759f5287d1ad9737364a53026c9e to your computer and use it in GitHub Desktop.
Save davecra/8b52759f5287d1ad9737364a53026c9e to your computer and use it in GitHub Desktop.
Demonstrates how to create a Wait dialog in OfficeJS.dialogs
Wait.Show(null, true, function() {
Alert.Show("The user cancelled.");
});
setTimeout(function(){
Wait.CloseDialog();
Alert.Show("Done!");
}, 15000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment