Adding remote debug.

For some reason ng-table is loosing the header.
This commit is contained in:
Gunther Brunner
2014-06-20 20:36:21 +09:00
parent 7e7b52de7c
commit 905879235e
9 changed files with 95 additions and 61 deletions

View File

@@ -0,0 +1,6 @@
require('./remote-debug.css')
module.exports = angular.module('stf.remote-debug', [
])
.controller('RemoteDebugCtrl', require('./remote-debug-controller'))

View File

@@ -0,0 +1,3 @@
module.exports = function RemoteDebugCtrl($scope) {
}

View File

@@ -0,0 +1,17 @@
describe('RemoteDebugCtrl', function () {
beforeEach(module('stf.remote-debug'));
var scope, ctrl;
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('RemoteDebugCtrl', {$scope: scope});
}));
it('should ...', inject(function () {
expect(1).toEqual(1);
}));
});

View File

@@ -0,0 +1,3 @@
.stf-remote-debug {
}

View File

@@ -0,0 +1,6 @@
.widget-container.fluid-height.stf-remote-debug
.heading
i.fa
span(translate) Remote debug
.widget-content.padded
div