[FEATURE REQUEST] support for angular components
Modal service for AngularJS - supports creating popups and modals via a service.
Brought to you by:
evanfcrane
Originally created by: sp90
Is it on the roadmap to get it working with components, so instead of parsing in controller and templateurl, just to parse component name?
Example:
ModalService.showModal({
component: 'yesOrNo'
}).then(function(modal) {
modal.element.modal();
modal.close.then(function(result) {
// Do something with the result
});
});