diff --git a/lib/inliner.php b/lib/inliner.php index 325fba1..4bf9247 100644 --- a/lib/inliner.php +++ b/lib/inliner.php @@ -58,13 +58,13 @@ function minifyCss($css) { function minifyJs($js) { // Remove block comments - $js = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $js); + //$js = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $js); // Remove line comments - $js = preg_replace('!(//.*)|(/\*.*?\*/)!s', '', $js); + //$js = preg_replace('!(//.*)|(/\*.*?\*/)!s', '', $js); // Remove newlines and tabs - $js = str_replace(array("\r\n", "\r", "\n", "\t"), '', $js); + //$js = str_replace(array("\r\n", "\r", "\n", "\t"), '', $js); // Remove spaces around operators $js = preg_replace('~\s*([=+\-*/])\s*~', '$1', $js);