Created
September 8, 2014 12:05
-
-
Save weiland/241a6cf3350cc5915478 to your computer and use it in GitHub Desktop.
Chayns Alert Popup Dialog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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