From a200832d7931117e86ca8d3c34824c10b381c974 Mon Sep 17 00:00:00 2001 From: cubedro Date: Fri, 24 Apr 2015 20:52:29 +0300 Subject: [PATCH] increased map zoom to 3 --- public/js/directives.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/directives.js b/public/js/directives.js index afba238..0bd9ed1 100644 --- a/public/js/directives.js +++ b/public/js/directives.js @@ -66,7 +66,7 @@ angular.module('netStatsApp.directives', []). var zoomListener = d3.behavior.zoom() .size([width, height]) - .scaleExtent([1, 2]) + .scaleExtent([1, 3]) .on("zoom", redraw) .on("zoomend", animadraw);