Files
stf/res/app/settings/local/index.js
Gunther Brunner 71e139ddaf Added a modal lightbox-image directive.
Added a fallback-image directive.
Added the Device Photo on the Info tab.
2014-06-18 18:57:20 +09:00

15 lines
431 B
JavaScript

require('angular-bootstrap')
module.exports = angular.module('ui-local-settings', [
require('stf/settings').name,
require('stf/common-ui/modals/common').name,
'ui.bootstrap'
])
.run(["$templateCache", function ($templateCache) {
$templateCache.put(
'settings/local/local-settings.jade'
, require('./local-settings.jade')
)
}])
.controller('LocalSettingsCtrl', require('./local-settings-controller'))