mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-24 01:35:14 +02:00
Adding remote debug.
For some reason ng-table is loosing the header.
This commit is contained in:
6
res/app/control-panes/advanced/remote-debug/index.js
Normal file
6
res/app/control-panes/advanced/remote-debug/index.js
Normal file
@@ -0,0 +1,6 @@
|
||||
require('./remote-debug.css')
|
||||
|
||||
module.exports = angular.module('stf.remote-debug', [
|
||||
|
||||
])
|
||||
.controller('RemoteDebugCtrl', require('./remote-debug-controller'))
|
||||
@@ -0,0 +1,3 @@
|
||||
module.exports = function RemoteDebugCtrl($scope) {
|
||||
|
||||
}
|
||||
@@ -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);
|
||||
|
||||
}));
|
||||
|
||||
});
|
||||
@@ -0,0 +1,3 @@
|
||||
.stf-remote-debug {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
.widget-container.fluid-height.stf-remote-debug
|
||||
.heading
|
||||
i.fa
|
||||
span(translate) Remote debug
|
||||
.widget-content.padded
|
||||
div
|
||||
Reference in New Issue
Block a user