Skip to content

Instantly share code, notes, and snippets.

@weiland
Created September 8, 2014 12:05
Show Gist options
  • Select an option

  • Save weiland/241a6cf3350cc5915478 to your computer and use it in GitHub Desktop.

Select an option

Save weiland/241a6cf3350cc5915478 to your computer and use it in GitHub Desktop.
Chayns Alert Popup Dialog
(function (module, Chayns, undefined) {
'use strict';
module.alert = function (message, cb) {
var buttons = [new Chayns.PopUpButton('OK', cb)];
Chayns.ShowPopUp(message, "", buttons);
};
})(window.TappProject, Chayns);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment