Add Performance tab.

This commit is contained in:
Gunther Brunner
2014-10-06 19:11:46 +09:00
parent 1bedbad650
commit 1a8a5ff8ff
7 changed files with 57 additions and 18 deletions

View File

@@ -0,0 +1,11 @@
require('./performance.css')
module.exports = angular.module('stf.performance', [
])
.run(["$templateCache", function ($templateCache) {
$templateCache.put('control-panes/performance/performance.jade',
require('./performance.jade')
)
}])
.controller('PerformanceCtrl', require('./performance-controller'))