angular-modal-service
angular-modal-service copied to clipboard
Modal service for AngularJS - supports creating popups and modals via a service.
**Challenges** - Opening a modal does not change the focus. This generally requires manual workaround to ensure a solid user experience. **Solution** Add a `showModal` option which allows the caller...
Any plans for a release soon @dwmkerr?
I constantly get this error: `GET /bower_components/angular-modal-service/dst/dst/angular-modal-service.min.js.map 404 ` I need to update the path manually in my own file for it to work, because such ./dst/ doesn't exist twice,...
If the controller is instantiated after compiling and linking, any directives included in the model template won't have access to controller input values. For example, take a modal template which...
[Your article](http://www.dwmkerr.com/the-only-angularjs-modal-service-youll-ever-need/) clearly show an execution order: ``` var modalController = $controller(controller, inputs); var modalElementTemplate = angular.element(template); var linkFn = $compile(modalElementTemplate); var modalElement = linkFn(modalScope); ``` which is confirmed by...
Hi, is it possible to attach a sample with a 'save' button and showing where is the best place to call the save(record) methode and how to react on a...
I was just going through your below code snippet ::: It keeps appending the template html everytime i open the modal window. Is that kept on purpose? or just not...
It would be extremely useful to document how unit testing works with Angular Modal Service.
The modal's scope must be isolate so it does not reference any property up the scope chain such as 'Id' etc. $rootScope.$new(true) https://docs.angularjs.org/api/ng/type/$rootScope.Scope#$new
It would be great to support Angular 2. Step 1 is to detail the proposed API. See: - https://github.com/dwmkerr/angular-modal-service/issues/186 - https://github.com/dwmkerr/angular-modal-service/issues/179