Skip to content

Instantly share code, notes, and snippets.

@cmwelsh
Created April 10, 2015 16:54
Show Gist options
  • Save cmwelsh/fb26c6c82f59b83f80b5 to your computer and use it in GitHub Desktop.
Save cmwelsh/fb26c6c82f59b83f80b5 to your computer and use it in GitHub Desktop.
define([
'bluebird',
'bootbox'
], function(
Bluebird,
bootbox
) {
'use strict';
return {
alert: function (message) {
return new Bluebird(function (resolve, reject) {
bootbox.alert(message, resolve);
});
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment