[pypy-svn] r71150 - pypy/build/bot2/jsplot/js

fijal at codespeak.net fijal at codespeak.net
Sun Feb 7 20:32:00 CET 2010


Author: fijal
Date: Sun Feb  7 20:31:58 2010
New Revision: 71150

Modified:
   pypy/build/bot2/jsplot/js/plot.js
Log:
kill arbitrary adjustment


Modified: pypy/build/bot2/jsplot/js/plot.js
==============================================================================
--- pypy/build/bot2/jsplot/js/plot.js	(original)
+++ pypy/build/bot2/jsplot/js/plot.js	Sun Feb  7 20:31:58 2010
@@ -213,7 +213,7 @@
         $("canvas:last").height();
     $('.tickLabel[style*=center]').each(function() {
         var width = $(this).width();
-        $(this).css("top", canvas_bottom + width - 50);
+        $(this).css("top", canvas_bottom + width);
         $(this).addClass('tickLabelY');
     });
     $('.tickLabelY').css('text-align', 'right');



More information about the Pypy-commit mailing list