This is an automated email from the ASF dual-hosted git repository.

tbouron pushed a commit to branch tbouron-patch-1
in repository https://gitbox.apache.org/repos/asf/brooklyn-ui.git

commit 6cfa8ee0e8a937728206bc61a58971191fc8431e
Author: Thomas Bouron <tbou...@gmail.com>
AuthorDate: Mon Mar 11 09:51:11 2019 +0000

    Allow bigger zoom in, for large screen mainly
---
 ui-modules/blueprint-composer/app/components/util/d3-blueprint.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js 
b/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js
index b25bc04..6e1e0e6 100755
--- a/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js
+++ b/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js
@@ -173,7 +173,7 @@ export function D3Blueprint(container) {
         relationships: [],
     };
 
-    let zoom = d3.zoom().scaleExtent([0.1, 1]).on('zoom', onSvgZoom);
+    let zoom = d3.zoom().scaleExtent([0.1, 1.3]).on('zoom', onSvgZoom);
     _svg
         .attr('preserveAspectRatio', 'xMinYMin meet')
         .attr('viewBox', () => {

Reply via email to