helpers.js 404 B

12345678910111213141516171819202122
  1. angular
  2. .module('mwl.calendar.docs')
  3. .factory('alert', function($uibModal) {
  4. function show(action, event) {
  5. return $uibModal.open({
  6. templateUrl: 'modalContent.html',
  7. controller: function() {
  8. var vm = this;
  9. vm.action = action;
  10. vm.event = event;
  11. },
  12. controllerAs: 'vm'
  13. });
  14. }
  15. return {
  16. show: show
  17. };
  18. });