UNPKG

oz-notifier

Version:

A notification plugin for angularjs apps

17 lines (15 loc) 468 B
/** * Created by oz on 4/14/2017. */ 'use strict'; //this is a component that i use to show notification its more of a container module.exports = { template: require('./oz-notifier-template.html'), controller: function(ozNotifierService){ var that = this; that.notificationList = ozNotifierService.getNotifications(); that.removeNotif = function(notif){ ozNotifierService.hide(notif); }; } };