Files
stf-DeviceFarmer/res/app/settings/notifications/index.js
2014-03-26 16:06:49 +09:00

12 lines
416 B
JavaScript

module.exports = angular.module('settings-notifications', [
require('stf/settings').name
])
.run(["$templateCache", function($templateCache) {
$templateCache.put(
'settings/notifications/notifications.jade'
, require('./notifications.jade')
)
}])
.factory('NotificationsService', require('./notifications-service'))
.controller('NotificationsCtrl', require('./notifications-controller'))