Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
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
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
5cc11cfc
Commit
5cc11cfc
authored
Apr 07, 2015
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lower the pointHitDetectionRadius for commit charts
Fixes #2088
parent
26a6cec9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
app/views/projects/graphs/commits.html.haml
app/views/projects/graphs/commits.html.haml
+3
-3
No files found.
app/views/projects/graphs/commits.html.haml
View file @
5cc11cfc
...
@@ -54,7 +54,7 @@
...
@@ -54,7 +54,7 @@
}
}
ctx = $("#hour-chart").get(0).getContext("2d");
ctx = $("#hour-chart").get(0).getContext("2d");
new Chart(ctx).Line(data,{"scaleOverlay": true, responsive: true
});
new Chart(ctx).Line(data,{"scaleOverlay": true, responsive: true
, pointHitDetectionRadius: 2})
data = {
data = {
labels :
#{
@commits_per_week_days
.
keys
.
to_json
}
,
labels :
#{
@commits_per_week_days
.
keys
.
to_json
}
,
...
@@ -68,7 +68,7 @@
...
@@ -68,7 +68,7 @@
}
}
ctx = $("#weekday-chart").get(0).getContext("2d");
ctx = $("#weekday-chart").get(0).getContext("2d");
new Chart(ctx).Line(data,{"scaleOverlay": true, responsive: true
});
new Chart(ctx).Line(data,{"scaleOverlay": true, responsive: true
, pointHitDetectionRadius: 2})
data = {
data = {
labels :
#{
@commits_per_month
.
keys
.
to_json
}
,
labels :
#{
@commits_per_month
.
keys
.
to_json
}
,
...
@@ -82,4 +82,4 @@
...
@@ -82,4 +82,4 @@
}
}
ctx = $("#month-chart").get(0).getContext("2d");
ctx = $("#month-chart").get(0).getContext("2d");
new Chart(ctx).Line(data,
{"scaleOverlay": true, responsive: true});
new Chart(ctx).Line(data,
{"scaleOverlay": true, responsive: true, pointHitDetectionRadius: 2})
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