1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 02:09:32 +02:00
OpenSTF/res/app/control-panes/advanced/run-js/index.js
2014-03-28 21:32:41 +09:00

11 lines
301 B
JavaScript

require('./run-js.css')
module.exports = angular.module('stf.run-js', [
])
.run(["$templateCache", function ($templateCache) {
$templateCache.put('control-panes/advanced/run-js/run-js.jade',
require('./run-js.jade')
)
}])
.controller('RunJsCtrl', require('./run-js-controller'))