Files
habitica/assets/js/controllers/notificationCtrl.js
T
Tyler Renelle 3c45220e1f rewrite2 WIP
2013-08-24 23:54:08 -04:00

10 lines
167 B
JavaScript

'use strict';
habitrpg.controller('NotificationCtrl',
['$scope', 'Notification',
function ($scope, Notification) {
$scope.data = Notification.get();
}
]);