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
aa13a80d
Commit
aa13a80d
authored
Nov 26, 2015
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(influxdb): fixed issue with metric segment component that caused double events
parent
f00320c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
15 deletions
+20
-15
public/app/core/directives/metric_segment.js
+20
-15
No files found.
public/app/core/directives/metric_segment.js
View file @
aa13a80d
...
...
@@ -27,6 +27,7 @@ function (_, $, coreModule) {
var
segment
=
$scope
.
segment
;
var
options
=
null
;
var
cancelBlur
=
null
;
var
linkMode
=
true
;
$input
.
appendTo
(
elem
);
$button
.
appendTo
(
elem
);
...
...
@@ -55,19 +56,21 @@ function (_, $, coreModule) {
});
};
$scope
.
switchToLink
=
function
(
now
)
{
if
(
now
===
true
||
cancelBlur
)
{
clearTimeout
(
cancelBlur
);
cancelBlur
=
null
;
$input
.
hide
();
$button
.
show
();
$scope
.
updateVariableValue
(
$input
.
val
());
}
else
{
// need to have long delay because the blur
// happens long before the click event on the typeahead options
cancelBlur
=
setTimeout
(
$scope
.
switchToLink
,
100
);
}
$scope
.
switchToLink
=
function
()
{
if
(
linkMode
)
{
return
;
}
clearTimeout
(
cancelBlur
);
cancelBlur
=
null
;
linkMode
=
true
;
$input
.
hide
();
$button
.
show
();
$scope
.
updateVariableValue
(
$input
.
val
());
};
$scope
.
inputBlur
=
function
()
{
// happens long before the click event on the typeahead options
// need to have long delay because the blur
cancelBlur
=
setTimeout
(
$scope
.
switchToLink
,
100
);
};
$scope
.
source
=
function
(
query
,
callback
)
{
...
...
@@ -98,7 +101,7 @@ function (_, $, coreModule) {
}
$input
.
val
(
value
);
$scope
.
switchToLink
(
true
);
$scope
.
switchToLink
();
return
value
;
};
...
...
@@ -139,6 +142,8 @@ function (_, $, coreModule) {
$input
.
show
();
$input
.
focus
();
linkMode
=
false
;
var
typeahead
=
$input
.
data
(
'typeahead'
);
if
(
typeahead
)
{
$input
.
val
(
''
);
...
...
@@ -146,7 +151,7 @@ function (_, $, coreModule) {
}
});
$input
.
blur
(
$scope
.
switchToLink
);
$input
.
blur
(
$scope
.
inputBlur
);
$compile
(
elem
.
contents
())(
$scope
);
}
...
...
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