Skip to content

Commit

Permalink
Removed a console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
lrbabe committed Sep 1, 2010
1 parent 84890d3 commit 41a2c4b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/cssminifier.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ function minify(css) {

// no space after the end of a preserved comment
css = css.split("*/ ").join("*/");
console.log(css)

// Trim the final string (for any leading or trailing white spaces)
return css.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
Expand All @@ -181,6 +180,6 @@ function minify(css) {
}

// export
global.minifyCSS = minifyCSS;
global.minify = minify;

})(this);

2 comments on commit 41a2c4b

@stoyan
Copy link

@stoyan stoyan commented on 41a2c4b Nov 2, 2010

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

very cool, do you mind signing that CLA:
http://developer.yahoo.com/yui/community/index.html
so I can pull this in part or in whole into the YUICompressor trunk?

Thanks,
Stoyan

@louisremi
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello stoyan,

I just signed the CLA. It now has to travel from France to California.

Regards,
Lr

Please sign in to comment.