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
39bc3cb5
Commit
39bc3cb5
authored
Oct 30, 2015
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactoring: moving stuff around
parent
4dcd2ceb
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
18 additions
and
18 deletions
+18
-18
public/app/core/time_series.js
+0
-0
public/app/features/panel/all.js
+5
-5
public/app/features/panel/panel_directive.js
+0
-0
public/app/features/panel/panel_helper.js
+0
-0
public/app/features/panel/panel_menu.js
+0
-0
public/app/features/panel/panel_meta.ts
+0
-0
public/app/features/panel/panel_srv.js
+0
-0
public/app/features/panel/solo_panel_ctrl.js
+0
-0
public/app/panels/dashlist/module.js
+1
-1
public/app/panels/graph/module.js
+2
-2
public/app/panels/singlestat/module.js
+2
-2
public/app/panels/text/module.js
+1
-1
public/test/specs/core/time_series_specs.js
+1
-1
public/test/specs/graph-ctrl-specs.js
+2
-2
public/test/specs/graph-specs.js
+1
-1
public/test/specs/panelSrv-specs.js
+1
-1
public/test/specs/singlestat-specs.js
+2
-2
No files found.
public/app/co
mponents/timeS
eries.js
→
public/app/co
re/time_s
eries.js
View file @
39bc3cb5
File moved
public/app/features/panel/all.js
View file @
39bc3cb5
define
([
'./panel
M
enu'
,
'./panel
D
irective'
,
'./panel
S
rv'
,
'./panel
H
elper'
,
'./solo
PanelC
trl'
,
'./panel
_m
enu'
,
'./panel
_d
irective'
,
'./panel
_s
rv'
,
'./panel
_h
elper'
,
'./solo
_panel_c
trl'
,
],
function
()
{});
public/app/features/panel/panel
D
irective.js
→
public/app/features/panel/panel
_d
irective.js
View file @
39bc3cb5
File moved
public/app/features/panel/panel
H
elper.js
→
public/app/features/panel/panel
_h
elper.js
View file @
39bc3cb5
File moved
public/app/features/panel/panel
M
enu.js
→
public/app/features/panel/panel
_m
enu.js
View file @
39bc3cb5
File moved
public/app/
components/panel
meta.ts
→
public/app/
features/panel/panel_
meta.ts
View file @
39bc3cb5
File moved
public/app/features/panel/panel
S
rv.js
→
public/app/features/panel/panel
_s
rv.js
View file @
39bc3cb5
File moved
public/app/features/panel/solo
PanelC
trl.js
→
public/app/features/panel/solo
_panel_c
trl.js
View file @
39bc3cb5
File moved
public/app/panels/dashlist/module.js
View file @
39bc3cb5
...
...
@@ -3,7 +3,7 @@ define([
'app/app'
,
'lodash'
,
'config'
,
'app/
components/panel
meta'
,
'app/
features/panel/panel_
meta'
,
],
function
(
angular
,
app
,
_
,
config
,
PanelMeta
)
{
'use strict'
;
...
...
public/app/panels/graph/module.js
View file @
39bc3cb5
...
...
@@ -4,8 +4,8 @@ define([
'lodash'
,
'kbn'
,
'moment'
,
'app/co
mponents/timeS
eries'
,
'app/
components/panel
meta'
,
'app/co
re/time_s
eries'
,
'app/
features/panel/panel_
meta'
,
'./seriesOverridesCtrl'
,
'./graph'
,
'./legend'
,
...
...
public/app/panels/singlestat/module.js
View file @
39bc3cb5
...
...
@@ -3,8 +3,8 @@ define([
'app/app'
,
'lodash'
,
'kbn'
,
'app/co
mponents/timeS
eries'
,
'app/
components/panel
meta'
,
'app/co
re/time_s
eries'
,
'app/
features/panel/panel_
meta'
,
'./singleStatPanel'
,
],
function
(
angular
,
app
,
_
,
kbn
,
TimeSeries
,
PanelMeta
)
{
...
...
public/app/panels/text/module.js
View file @
39bc3cb5
...
...
@@ -3,7 +3,7 @@ define([
'app/app'
,
'lodash'
,
'require'
,
'app/
components/panel
meta'
,
'app/
features/panel/panel_
meta'
,
],
function
(
angular
,
app
,
_
,
require
,
PanelMeta
)
{
'use strict'
;
...
...
public/test/specs/
timeSeries-
specs.js
→
public/test/specs/
core/time_series_
specs.js
View file @
39bc3cb5
define
([
'app/co
mponents/timeS
eries'
'app/co
re/time_s
eries'
],
function
(
TimeSeries
)
{
'use strict'
;
...
...
public/test/specs/graph-ctrl-specs.js
View file @
39bc3cb5
define
([
'./helpers'
,
'app/features/panel/panel
S
rv'
,
'app/features/panel/panel
H
elper'
,
'app/features/panel/panel
_s
rv'
,
'app/features/panel/panel
_h
elper'
,
'app/panels/graph/module'
],
function
(
helpers
)
{
'use strict'
;
...
...
public/test/specs/graph-specs.js
View file @
39bc3cb5
...
...
@@ -2,7 +2,7 @@ define([
'./helpers'
,
'angular'
,
'jquery'
,
'app/co
mponents/timeS
eries'
,
'app/co
re/time_s
eries'
,
'app/panels/graph/graph'
],
function
(
helpers
,
angular
,
$
,
TimeSeries
)
{
'use strict'
;
...
...
public/test/specs/panelSrv-specs.js
View file @
39bc3cb5
define
([
'./helpers'
,
'app/features/panel/panel
S
rv'
,
'app/features/panel/panel
_s
rv'
,
],
function
()
{
'use strict'
;
...
...
public/test/specs/singlestat-specs.js
View file @
39bc3cb5
define
([
'./helpers'
,
'app/features/panel/panel
S
rv'
,
'app/features/panel/panel
H
elper'
,
'app/features/panel/panel
_s
rv'
,
'app/features/panel/panel
_h
elper'
,
'app/panels/singlestat/module'
],
function
(
helpers
)
{
'use strict'
;
...
...
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