walnut_launchpad.html/js/directives/notification-directive.js

8 lines
186 B
JavaScript
Raw Normal View History

2017-08-11 13:21:35 -06:00
app.directive('notificationDirective', function() {
return {
2017-08-15 10:14:27 -06:00
templateUrl: "templates/widgets/notification-widget.html",
controller: 'homeCtrl',
controllerAs: 'vm'
2017-08-11 13:21:35 -06:00
};
});