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
20cdd76a
Commit
20cdd76a
authored
May 29, 2013
by
Rashid Khan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #132 from rashidkpc/master
Fix for jquery race when using firebug
parents
ce869dbb
8f88bd5e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
3 deletions
+2
-3
common/lib/settings.js
+0
-1
index.html
+1
-0
js/app.js
+0
-1
panels/histogram/module.js
+1
-1
No files found.
common/lib/settings.js
View file @
20cdd76a
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
var
Settings
=
function
(
s
)
{
var
Settings
=
function
(
s
)
{
var
_d
=
{
var
_d
=
{
elasticsearch
:
'localhost:9200'
,
elasticsearch
:
'localhost:9200'
,
timeformat
:
'mm/dd HH:MM:ss'
,
modules
:
[],
modules
:
[],
kibana_index
:
'kibana-int'
kibana_index
:
'kibana-int'
}
}
...
...
index.html
View file @
20cdd76a
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
<link
rel=
"stylesheet"
href=
"common/css/timepicker.css"
>
<link
rel=
"stylesheet"
href=
"common/css/timepicker.css"
>
<!-- project dependency libs -->
<!-- project dependency libs -->
<script
src=
"common/lib/jquery-1.8.0.min.js"
></script>
<script
src=
"common/lib/LAB.min.js"
></script>
<script
src=
"common/lib/LAB.min.js"
></script>
<script
src=
"common/lib/underscore.min.js"
></script>
<script
src=
"common/lib/underscore.min.js"
></script>
<script
src=
"common/lib/settings.js"
></script>
<script
src=
"common/lib/settings.js"
></script>
...
...
js/app.js
View file @
20cdd76a
...
@@ -17,7 +17,6 @@ var modules = [
...
@@ -17,7 +17,6 @@ var modules = [
var
scripts
=
[]
var
scripts
=
[]
var
labjs
=
$LAB
var
labjs
=
$LAB
.
script
(
"common/lib/jquery-1.8.0.min.js"
)
.
script
(
"common/lib/modernizr-2.6.1.min.js"
)
.
script
(
"common/lib/modernizr-2.6.1.min.js"
)
.
script
(
"common/lib/underscore.min.js"
)
.
script
(
"common/lib/underscore.min.js"
)
.
script
(
"common/lib/angular.min.js"
)
.
script
(
"common/lib/angular.min.js"
)
...
...
panels/histogram/module.js
View file @
20cdd76a
...
@@ -118,7 +118,7 @@ angular.module('kibana.histogram', [])
...
@@ -118,7 +118,7 @@ angular.module('kibana.histogram', [])
$scope
.
panel
.
loading
=
true
;
$scope
.
panel
.
loading
=
true
;
var
_segment
=
_
.
isUndefined
(
segment
)
?
0
:
segment
var
_segment
=
_
.
isUndefined
(
segment
)
?
0
:
segment
var
request
=
$scope
.
ejs
.
Request
().
indices
(
$scope
.
index
[
_segment
]);
var
request
=
$scope
.
ejs
.
Request
().
indices
(
$scope
.
index
[
_segment
]);
// Build the question part of the query
// Build the question part of the query
var
queries
=
[];
var
queries
=
[];
_
.
each
(
$scope
.
panel
.
query
,
function
(
v
)
{
_
.
each
(
$scope
.
panel
.
query
,
function
(
v
)
{
...
...
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