Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
d34ba416
Commit
d34ba416
authored
Dec 18, 2015
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tech(systemjs): more stuff is starting to work
parent
545c3935
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
16 additions
and
7 deletions
+16
-7
public/app/features/panel/panel_directive.js
+2
-0
public/app/features/panel/panel_meta.js
+7
-0
public/app/features/panel/panel_meta2.ts
+1
-1
public/app/plugins/panels/dashlist/module.js
+1
-1
public/app/plugins/panels/graph/seriesOverridesCtrl.js
+1
-1
public/app/plugins/panels/singlestat/module.js
+1
-1
public/app/plugins/panels/singlestat/singleStatPanel.js
+1
-1
public/app/plugins/panels/table/controller.ts
+1
-1
public/app/plugins/panels/text/module.js
+1
-1
No files found.
public/app/features/panel/panel_directive.js
View file @
d34ba416
...
...
@@ -19,6 +19,8 @@ function (angular, $, config) {
var
panelEl
=
angular
.
element
(
document
.
createElement
(
'grafana-panel-'
+
panelType
));
elem
.
append
(
panelEl
);
$compile
(
panelEl
)(
scope
);
}).
catch
(
function
(
err
)
{
scope
.
appEvent
(
'alert-error'
,
[
'Panel Load Error'
,
'Failed to load panel '
+
panelType
+
', '
+
err
]);
});
}
};
...
...
public/app/features/panel/panel_meta.js
0 → 100644
View file @
d34ba416
define
([
'./panel_meta2'
,
],
function
(
panelMeta
)
{
'use strict'
;
return
panelMeta
.
default
;
});
public/app/features/panel/panel_meta.ts
→
public/app/features/panel/panel_meta
2
.ts
View file @
d34ba416
...
...
@@ -7,7 +7,7 @@ export default class PanelMeta {
editorTabs
:
any
;
extendedMenu
:
any
;
constructor
(
options
:
any
)
{
constructor
(
options
:
any
)
{
this
.
description
=
options
.
description
;
this
.
fullscreen
=
options
.
fullscreen
;
this
.
editIcon
=
options
.
editIcon
;
...
...
public/app/plugins/panels/dashlist/module.js
View file @
d34ba416
...
...
@@ -9,7 +9,7 @@ function (angular, app, _, config, PanelMeta) {
'use strict'
;
var
module
=
angular
.
module
(
'grafana.panels.dashlist'
,
[]);
app
.
useModule
(
module
);
app
.
default
.
useModule
(
module
);
module
.
directive
(
'grafanaPanelDashlist'
,
function
()
{
return
{
...
...
public/app/plugins/panels/graph/seriesOverridesCtrl.js
View file @
d34ba416
...
...
@@ -7,7 +7,7 @@ define([
'use strict'
;
var
module
=
angular
.
module
(
'grafana.panels.graph'
,
[]);
app
.
useModule
(
module
);
app
.
default
.
useModule
(
module
);
module
.
controller
(
'SeriesOverridesCtrl'
,
function
(
$scope
,
$element
,
popoverSrv
)
{
$scope
.
overrideMenu
=
[];
...
...
public/app/plugins/panels/singlestat/module.js
View file @
d34ba416
...
...
@@ -11,7 +11,7 @@ function (angular, app, _, kbn, TimeSeries, PanelMeta) {
'use strict'
;
var
module
=
angular
.
module
(
'grafana.panels.singlestat'
);
app
.
useModule
(
module
);
app
.
default
.
useModule
(
module
);
module
.
directive
(
'grafanaPanelSinglestat'
,
function
()
{
return
{
...
...
public/app/plugins/panels/singlestat/singleStatPanel.js
View file @
d34ba416
...
...
@@ -9,7 +9,7 @@ function (angular, app, _, $) {
'use strict'
;
var
module
=
angular
.
module
(
'grafana.panels.singlestat'
,
[]);
app
.
useModule
(
module
);
app
.
default
.
useModule
(
module
);
module
.
directive
(
'singlestatPanel'
,
function
(
$location
,
linkSrv
,
$timeout
,
templateSrv
)
{
...
...
public/app/plugins/panels/table/controller.ts
View file @
d34ba416
...
...
@@ -3,7 +3,7 @@
import
angular
=
require
(
'angular'
);
import
_
=
require
(
'lodash'
);
import
moment
=
require
(
'moment'
);
import
PanelMeta
from
'
../../../features/panel/panel_meta
'
;
import
PanelMeta
from
'
app/features/panel/panel_meta2
'
;
import
{
transformDataToTable
}
from
'./transformers'
;
...
...
public/app/plugins/panels/text/module.js
View file @
d34ba416
...
...
@@ -11,7 +11,7 @@ function (angular, app, _, require, PanelMeta) {
var
converter
;
var
module
=
angular
.
module
(
'grafana.panels.text'
,
[]);
app
.
useModule
(
module
);
app
.
default
.
useModule
(
module
);
module
.
directive
(
'grafanaPanelText'
,
function
()
{
return
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment