Skip to content

Instantly share code, notes, and snippets.

@ralfting
Created August 8, 2017 22:12
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 ralfting/4a8008982a243682956109bfc2a6d138 to your computer and use it in GitHub Desktop.
Save ralfting/4a8008982a243682956109bfc2a6d138 to your computer and use it in GitHub Desktop.
// make-messages-error.js
module.exports = (function() {
function create(errors) {
// implementation
}
return {
create: create
};
})();
// util.js
var makeMessageError = require('./shared/make-message-error');
return {
makeMessageError: makeMessageError
}
// Controller
// [...]
function(errors){
Utils.openConfirmModal(Utils.makeMessageError.create(errors));
}
// [...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment