aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-03-27 14:08:45 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-03-27 14:08:45 +0000
commitd3f414dd3a6f8187419f489f6419681c8aefc960 (patch)
tree2f236bc52aa2cf45d73c2ee8ba2966e4d8781246 /app
parentadd initial deployment files (diff)
downloadAnnotateChange-d3f414dd3a6f8187419f489f6419681c8aefc960.tar.gz
AnnotateChange-d3f414dd3a6f8187419f489f6419681c8aefc960.zip
increase max zoom
Diffstat (limited to 'app')
-rw-r--r--app/templates/annotate/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/templates/annotate/index.html b/app/templates/annotate/index.html
index 6a34f61..a9ce8a7 100644
--- a/app/templates/annotate/index.html
+++ b/app/templates/annotate/index.html
@@ -99,7 +99,7 @@ var width = +svg.attr("width") - margin.left - margin.right;
var height = +svg.attr("height") - margin.top - margin.bottom;
var zoom = d3.zoom()
- .scaleExtent([1, 10])
+ .scaleExtent([1, 50])
.translateExtent([[0, 0], [width, height]])
.extent([[0, 0], [width, height]])
.on("zoom", zoomed);