Skip to content

Instantly share code, notes, and snippets.

@luizcarraro
Created March 16, 2017 14:13
Show Gist options
  • Save luizcarraro/b27174c3e160d5fbd0d12f7981447414 to your computer and use it in GitHub Desktop.
Save luizcarraro/b27174c3e160d5fbd0d12f7981447414 to your computer and use it in GitHub Desktop.
Boostrap modal Ember Mixin
import Ember from 'ember';
export default Ember.Mixin.create({
activate() {
this._super();
Ember.run.next(() => {
$(".modal").modal('show');
});
},
actions: {
closeModal() {
$(".modal").modal('hide');
window.history.back();
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment