From 540bf2062a87da5629c7ed98300b39caeffe397f Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Tue, 17 Apr 2018 15:16:50 -0400 Subject: fit scales up svg if necessary --- print/resources/inkstitch.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'print/resources') diff --git a/print/resources/inkstitch.js b/print/resources/inkstitch.js index 0571f432..8c5e8fa6 100644 --- a/print/resources/inkstitch.js +++ b/print/resources/inkstitch.js @@ -33,8 +33,6 @@ function scaleSVG(element, scale = 'fit') { element.width() / element.find('svg').width(), element.height() / element.find('svg').height() ); - // Do not scale to more than 100% - scale = (scale <= 1) ? scale : 1; } transform += " scale(" + scale + ")"; -- cgit v1.2.3