tech: ran pretttier on all typescript files

This commit is contained in:
Torkel Ödegaard
2017-12-19 16:06:54 +01:00
parent b1621e1e8f
commit fadfc665e4
355 changed files with 20624 additions and 14931 deletions

View File

@@ -1,18 +1,17 @@
import angular from 'angular';
import coreModule from 'app/core/core_module';
import angular from "angular";
import coreModule from "app/core/core_module";
export interface AttachedPanel {
destroy();
}
export class PanelLoader {
/** @ngInject */
constructor(private $compile, private $rootScope) {
}
constructor(private $compile, private $rootScope) {}
load(elem, panel, dashboard): AttachedPanel {
var template = '<plugin-component type="panel" class="panel-height-helper"></plugin-component>';
var template =
'<plugin-component type="panel" class="panel-height-helper"></plugin-component>';
var panelScope = this.$rootScope.$new();
panelScope.panel = panel;
panelScope.dashboard = dashboard;
@@ -30,4 +29,4 @@ export class PanelLoader {
}
}
coreModule.service('panelLoader', PanelLoader);
coreModule.service("panelLoader", PanelLoader);