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
d259f142
Commit
d259f142
authored
Jan 21, 2014
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial work on #9 (millisecond y axis formater)
parent
3b6bf80e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
src/app/components/kbn.js
+10
-0
src/app/directives/kibanaPanel.js
+1
-2
No files found.
src/app/components/kbn.js
View file @
d259f142
...
...
@@ -505,5 +505,14 @@ function($, _, moment) {
return
(
size
.
toFixed
(
decimals
)
+
ext
);
};
kbn
.
msFormat
=
function
(
size
)
{
if
(
size
<
500
)
{
return
size
.
toFixed
(
0
)
+
" ms"
;
}
else
{
return
(
size
/
1000
).
toFixed
(
0
)
+
" s"
;
}
};
return
kbn
;
});
\ No newline at end of file
src/app/directives/kibanaPanel.js
View file @
d259f142
...
...
@@ -61,8 +61,7 @@ function (angular, $) {
$scope
.
kbnJqUiDraggableOptions
=
{
revert
:
'invalid'
,
helper
:
function
(
event
)
{
console
.
log
(
event
);
helper
:
function
()
{
return
$
(
'<div style="width:200px;height:100px;background: rgba(100,100,100,0.50);"/>'
);
},
placeholder
:
'keep'
...
...
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