# HG changeset patch # User Marcin Kuzminski # Date 1277245860 -7200 # Node ID 1dbe02063123789f57b4f70fb0f6ae263a5b8612 # Parent ab1afe7444f379a41e1026e52d55cf283fb60c44 graph fixes. diff -r ab1afe7444f3 -r 1dbe02063123 pylons_app/public/js/graph.js --- a/pylons_app/public/js/graph.js Wed Jun 23 00:18:10 2010 +0200 +++ b/pylons_app/public/js/graph.js Wed Jun 23 00:31:00 2010 +0200 @@ -105,7 +105,8 @@ this.ctx.beginPath(); this.ctx.moveTo(x, y); - y += row.clientHeight; + //i don't know why it's +1 just fixes some drawing graph. + y += row.clientHeight+1; x = pad-((1 + this.box_size * end) + this.bg_height-2); this.ctx.lineTo(x,y+extra); this.ctx.stroke(); diff -r ab1afe7444f3 -r 1dbe02063123 pylons_app/templates/base/base.html --- a/pylons_app/templates/base/base.html Wed Jun 23 00:18:10 2010 +0200 +++ b/pylons_app/templates/base/base.html Wed Jun 23 00:31:00 2010 +0200 @@ -28,7 +28,7 @@
${next.main()} - +