Skip to content

Instantly share code, notes, and snippets.

@lfalmeida
Created February 25, 2015 12:55
Show Gist options
  • Save lfalmeida/37a5a8fe84dc9e948527 to your computer and use it in GitHub Desktop.
Save lfalmeida/37a5a8fe84dc9e948527 to your computer and use it in GitHub Desktop.
Modal sobre modal mdnb
require(['modules/banners/views/listaView'], function (EmailModal) {
var view = new EmailModal({model: new Backbone.Model()}),
modalOptions = {
removeExtraPannel: true,
showFooter: true,
title: 'Responder e-mail',
modalSize: 'full', // renderiza .modal-lg
onRenderCallback: function () {
console.log('Execuntando o método onRenderCallback');
}
};
app.commands.execute("app:show:modalView", view, modalOptions);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment