From da04c4726038c77e903277fef4170e83af7ec095 Mon Sep 17 00:00:00 2001 From: Kir Belevich Date: Tue, 14 Jan 2014 16:17:23 +0200 Subject: [PATCH] disable removeViewBox by default (fix #139) --- plugins/removeViewBox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/removeViewBox.js b/plugins/removeViewBox.js index e44fff2d..d3578059 100644 --- a/plugins/removeViewBox.js +++ b/plugins/removeViewBox.js @@ -2,7 +2,7 @@ exports.type = 'perItem'; -exports.active = true; +exports.active = false; var regViewBox = /^0\s0\s([\-+]?\d*\.?\d+([eE][\-+]?\d+)?)\s([\-+]?\d*\.?\d+([eE][\-+]?\d+)?)$/, viewBoxElems = ['svg', 'pattern'];