habitica/assets/js/controllers/notificationCtrl.js

10 lines
167 B
JavaScript
Raw Normal View History

2013-08-25 01:06:37 +00:00
'use strict';
habitrpg.controller('NotificationCtrl',
['$scope', 'Notification',
function ($scope, Notification) {
$scope.data = Notification.get();
}
]);