Skip to content

Commit

Permalink
Minify all the things
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Mar 12, 2016
1 parent 12afa08 commit 457b885
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/MinifyService.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public function minify($htmlText="")
if ($this->shouldMinify)
{
$options = array(
'cssMinifier' => \Minify_CSSmin::minify,
'jsMinifier' => \JSMin\JSMin::minify,
'cssMinifier' => '\Minify_CSSmin::minify',
'jsMinifier' => '\JSMin\JSMin::minify',
);
$htmlText = \Minify_HTML::minify($htmlText, $options);
}
Expand Down

0 comments on commit 457b885

Please sign in to comment.