You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 9, 2017. It is now read-only.
function NotificationProvider(){function a(a,c){function d(){if(!a.Notification)throw new Error("This browser does not support desktop notification.")}function e(c,f){function g(){angular.extend(f,b.options||{}),h.baseNotification=new a.Notification(c,f),f.delay&&setTimeout(angular.bind(h,h.close),f.delay),h._events.forEach(function(a){h.$on.apply(h,a)}),h._events=[]}f=f||{};var h=this;return d(),this._events=[],"granted"===a.Notification.permission?g():void("denied"!==a.Notification.permission&&e.requestPermission(g))}return e.prototype.$on=function(a,b){function d(){var a=arguments;c.$apply(function(){b.apply(null,a)})}return this.baseNotification?(this.baseNotification.addEventListener(a,d),function(){this.baseNotification.removeListener(event,d)}):this._events.push([a,b])},e.prototype.close=function(){this.baseNotification&&this.baseNotification.close()},e.requestPermission=function(b){d(),a.Notification.requestPermission(function(c){a.Notification.permission=a.Notification.permission||c,b(c)})},e}var b=this;this.$get=["$window","$rootScope",a],this.setOptions=function(a){this.options=a}}angular.module("notification",[]).provider("Notification",NotificationProvider);