Moved Remote Debug from Advanced to Dashboard for faster access.

This commit is contained in:
Gunther Brunner
2014-08-07 14:55:40 +09:00
parent ad29c048b3
commit 5bad2a35d5
10 changed files with 24 additions and 18 deletions

View File

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