angular-modal-service icon indicating copy to clipboard operation
angular-modal-service copied to clipboard

Modal service for AngularJS - supports creating popups and modals via a service.

Results 53 angular-modal-service issues
Sort by recently updated
recently updated
newest added

First of all, thanks for this amazing plugin. On: ``` // We can now clean up the scope modalScope.$destroy(); ``` Got: ``` TypeError: Cannot read property '$destroy' of null at...

I opened and closed the first dialog several times on the page http://dwmkerr.github.io/angular-modal-service/. This producdes the following memory leak: ![memoery-leak-2-in-angular-modal-service](https://user-images.githubusercontent.com/5385814/33665338-e210abd4-da96-11e7-9e33-58e4fd912761.png)

property "display" is "none" instead of "block" when modal is open in modal class bootstrap css that causes the effect backdrop appears, and html code of modal do same, but...

In my situation I use **ModalService.closeModals** to close all modals but when I open a new modal the other modal just pop up too

Modals can be closed by clicking outside the modal window and I want to keep that functionality. However, closing the modal this way doesn't trigger the close promise. Should it?...

Have wrapped the $locationChangeSuccess event so that it calls the function with no values, the same as if you manually closed the modal.

Hi! I ran into a problem when trying to close a modal by a $rootScope watch. This is my controller for the modal I want to close: ``` app.controller('PlaylistModalController', function($scope,...

@dwmkerr I can't seem to get this to work with angular-strap? Should I be able to use this with Angular-Strap Modals?

I am using angular-modal-service as modal service of Angular based web application I am building. Here is my code. ``` ModalService.showModal({ templateUrl: "views/modals/edit_report_draft.html", controller: "DraftReportController" }).then(function(modal){ modal.element.modal(); console.log("modal displayed"); })...