Files
stf-DeviceFarmer/res/app/control-panes/screenshots/index.js
2016-01-19 23:08:33 +09:00

13 lines
393 B
JavaScript

require('./screenshots.css')
module.exports = angular.module('stf.screenshots', [
require('stf/image-onload').name,
require('stf/settings').name
])
.run(['$templateCache', function($templateCache) {
$templateCache.put('control-panes/screenshots/screenshots.jade',
require('./screenshots.jade')
)
}])
.controller('ScreenshotsCtrl', require('./screenshots-controller'))