[jQuery] Re: jquery and minify

2009-02-01 Thread Sam Sherlock
Thanks Ariel. I have found out that http://code.google.com/p/minify/ retains comments when that are like /*! */ also I have seen that sometimes jQuery has this style of comment already 2009/1/31 Ariel Flesler afles...@gmail.com You should keep the headers somewhere, preferably close to the

[jQuery] Re: jquery and minify

2009-02-01 Thread Ariel Flesler
Yeah, I was just showing you the layout. We (jQuery) implemented the /*! since 1.3 because the YUI compressor is now used and it indeed recognizes /*!. Cheers On Sun, Feb 1, 2009 at 10:25 PM, Sam Sherlock sam.sherl...@gmail.com wrote: Thanks Ariel. I have found out that

[jQuery] Re: jquery and minify

2009-01-31 Thread Ariel Flesler
You should keep the headers somewhere, preferably close to the code. Something like this: /** * jQuery */ (function($){...}); /** * Plugin 1 */ (function($){...}); /** * Plugin 2 */ (function($){...}); -- Ariel Flesler http://flesler.blogspot.com On