summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-06-11 23:00:38 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-06-11 23:00:38 +0200
commitaa38dfe9383bfa2bd3a55e18a2ec48b860daf26c (patch)
tree9eb17ae4415346db5d2c5faa2f82b74ebb3a29ec
parent190c9e9f39c6d14c2a47083fcd5d64717919d9eb (diff)
downloadgitlab-ce-fix-graph-width.tar.gz
Fix graph width on different screen sizesfix-graph-width
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r--app/assets/javascripts/stat_graph_contributors_graph.js.coffee4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/stat_graph_contributors_graph.js.coffee b/app/assets/javascripts/stat_graph_contributors_graph.js.coffee
index 0e6fbdef3bc..b7a0e073766 100644
--- a/app/assets/javascripts/stat_graph_contributors_graph.js.coffee
+++ b/app/assets/javascripts/stat_graph_contributors_graph.js.coffee
@@ -50,7 +50,7 @@ class @ContributorsGraph
class @ContributorsMasterGraph extends ContributorsGraph
constructor: (@data) ->
- @width = $('.container').width() - 345
+ @width = $('.content').width() - 70
@height = 200
@x = null
@y = null
@@ -123,7 +123,7 @@ class @ContributorsMasterGraph extends ContributorsGraph
class @ContributorsAuthorGraph extends ContributorsGraph
constructor: (@data) ->
- @width = $('.container').width()/2 - 225
+ @width = $('.content').width()/2 - 100
@height = 200
@x = null
@y = null