seems like its not working in Sarafi browser
Modal service for AngularJS - supports creating popups and modals via a service.
Brought to you by:
evanfcrane
Originally created by: Subhabb
Its giving error on angular modal dialogue js file (i.e angular-modal-service.js).
Its saying "[Error] SyntaxError: Unexpected use of reserved word 'let' in strict mode
(anonymous function) (angular-modal-service.js:3)"
as let keyword is not supported in sarafi 9.0 or higher.
If we are changing the 3rd line of the file
let module = angular.module('angularModalService', []);
to
var module = angular.module('angularModalService', []);
its working perfectly fine.