From 8e1314107cb2cbf05388daab64f79bc70a5b9f18 Mon Sep 17 00:00:00 2001 From: Justin Palmer Date: Fri, 1 Feb 2013 10:10:06 -0800 Subject: [PATCH] we no longer need the minor tick size --- src/packages/editor-stats/src/editor-stats-view.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/packages/editor-stats/src/editor-stats-view.coffee b/src/packages/editor-stats/src/editor-stats-view.coffee index 9830eaa99..a709b3fb9 100644 --- a/src/packages/editor-stats/src/editor-stats-view.coffee +++ b/src/packages/editor-stats/src/editor-stats-view.coffee @@ -26,7 +26,7 @@ class EditorStatsView extends ScrollView @y.range [h - pt - pb, 0] @xaxis ?= d3.svg.axis().scale(@x).orient('top') - .tickSize(-h + pt + pb, 50) + .tickSize(-h + pt + pb) .tickFormat (d) => d = new Date(@stats.startDate.getTime() + (d * 6e4)) mins = d.getMinutes()