Skip to content
Snippets Groups Projects
Commit b63ef1a0 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Merge branch 'fix-graph-width' into 'master'


Fix graph width on different screen sizes

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>

See merge request !802
parents b4c02311 aa38dfe9
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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
Loading
Loading
@@ -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
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment