8 lines
186 B
JavaScript
8 lines
186 B
JavaScript
app.directive('notificationDirective', function() {
|
|
return {
|
|
templateUrl: "templates/widgets/notification-widget.html",
|
|
controller: 'homeCtrl',
|
|
controllerAs: 'vm'
|
|
};
|
|
});
|