Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
debomatic-webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
debomatic-webui-admins
debomatic-webui
Commits
1d00fca1
Commit
1d00fca1
authored
Sep 23, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved tooltip code to function
parent
145221ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
25 deletions
+33
-25
debomatic-webui/public/javascripts/page_history.js
debomatic-webui/public/javascripts/page_history.js
+33
-25
No files found.
debomatic-webui/public/javascripts/page_history.js
View file @
1d00fca1
...
...
@@ -105,6 +105,34 @@ function Page_History() {
}
// add tooltip to graphs
function
_create_graph_tooltip
(
graph
,
element
)
{
var
$chart
=
$
(
graph
);
var
$toolTip
=
$chart
.
append
(
'
<div class="tooltip fade top in" role="tooltip">
'
+
'
<div class="tooltip-arrow"></div>
'
+
'
<div class="tooltip-inner"></div>
'
+
'
</div>
'
).
find
(
'
.tooltip
'
).
hide
();
$chart
.
on
(
'
mousemove
'
,
function
(
event
)
{
$toolTip
.
css
({
left
:
event
.
offsetX
-
$toolTip
.
width
()
/
2
,
top
:
event
.
offsetY
-
$toolTip
.
height
()
-
20
});
});
$chart
.
on
(
'
mouseenter
'
,
element
,
function
()
{
var
$point
=
$
(
this
),
value
=
$point
.
attr
(
'
ct:value
'
),
seriesName
=
$point
.
parent
().
attr
(
'
ct:series-name
'
);
$toolTip
.
find
(
'
.tooltip-inner
'
).
html
(
seriesName
+
'
(
'
+
value
+
'
)
'
);
$toolTip
.
show
();
});
$chart
.
on
(
'
mouseleave
'
,
element
,
function
()
{
$toolTip
.
hide
();
});
}
function
_create_graph_distributions
()
{
// build the distribution Pie graph
var
distributions_data
=
{
...
...
@@ -147,43 +175,23 @@ function Page_History() {
});
}
Chartist
.
Line
(
'
#days-chart
'
,
days_data
);
_create_graph_tooltip
(
"
#days-chart
"
,
'
.ct-point
'
);
var
$chart
=
$
(
'
#days-chart
'
);
var
effect
=
function
(
x
,
t
,
b
,
c
,
d
)
{
return
-
c
*
(
t
/=
d
)
*
(
t
-
2
)
+
b
;
};
var
$chart
=
$
(
'
#days-chart
'
);
var
$toolTip
=
$chart
.
append
(
'
<div class="tooltip fade top in" role="tooltip">
'
+
'
<div class="tooltip-arrow"></div>
'
+
'
<div class="tooltip-inner"></div>
'
+
'
</div>
'
).
find
(
'
.tooltip
'
).
hide
();
$chart
.
on
(
'
mouseenter
'
,
'
.ct-point
'
,
function
()
{
var
$point
=
$
(
this
),
value
=
$point
.
attr
(
'
ct:value
'
),
seriesName
=
$point
.
parent
().
attr
(
'
ct:series-name
'
);
$point
.
stop
().
animate
({
$
(
this
).
stop
().
animate
({
'
stroke-width
'
:
'
20px
'
},
200
,
effect
);
$toolTip
.
find
(
'
.tooltip-inner
'
).
html
(
seriesName
+
'
(
'
+
value
+
'
)
'
);
$toolTip
.
show
();
});
$chart
.
on
(
'
mouseleave
'
,
'
.ct-point
'
,
function
()
{
var
$point
=
$
(
this
);
$point
.
stop
().
animate
({
$
(
this
).
stop
().
animate
({
'
stroke-width
'
:
'
10px
'
},
150
,
effect
);
$toolTip
.
hide
();
});
$chart
.
on
(
'
mousemove
'
,
function
(
event
)
{
$toolTip
.
css
({
left
:
event
.
offsetX
-
$toolTip
.
width
()
/
2
,
top
:
event
.
offsetY
-
$toolTip
.
height
()
-
20
});
});
}
...
...
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