Skip to content

Commit

Permalink
Html compression by default no extra
Browse files Browse the repository at this point in the history
  • Loading branch information
skeeks-semenov committed Jul 29, 2016
1 parent 4567547 commit 055523e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AssetsAutoCompressComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class AssetsAutoCompressComponent extends Component implements BootstrapInterfac
* * no-comments - cut all the html comments
*/
public $htmlCompressOptions = [
'extra' => true,
'extra' => false,
'no-comments' => true
];

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG
==============

1.2.1
-----------------
* Html compression by default no extra

1.2.0
-----------------
* Added html compression
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ How to use
'htmlCompress' => true, //Enable compression html
'htmlCompressOptions' => //options for compressing output result
[
'extra' => true, //use more compact algorithm
'extra' => false, //use more compact algorithm
'no-comments' => true //cut all the html comments
],
],
Expand Down

0 comments on commit 055523e

Please sign in to comment.