at.js inside javascript minified - script license | Community
Skip to main content
Perrin_Ennen
Community Advisor
Community Advisor
September 7, 2021
Solved

at.js inside javascript minified - script license

  • September 7, 2021
  • 1 reply
  • 1730 views

Hello, I want to put the code of the at.js in a wrapper. There is custom js like an if query for a consent. Nothing is changed inside the at.js code - only around the outside. Can I minify all this and write the with licenses over it?

 

Example:

/** * @1585722 * .. custom code .. * * @1585722 * at.js 2.6.1 | (c) Adobe Systems Incorporated | All rights reserved * zepto.js | (c) 2010-2016 Thomas Fuchs | zeptojs.com/license * * object-assign * (c) Sindre Sorhus * @1585722 MIT */ ... custom code ... at.js 2.6.1 code ... custom code ...

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Gokul_Agiwal

Any particular reason doing that? if you download at.js version that already been minify. 

 

May be you need to try this 

 

 /**
 * @License
 *  
 * @License
 * at.js 2.6.1 | (c) Adobe Systems Incorporated | All rights reserved
 *   
 */
// Wrapper function which executed on library loaded event
(function() {
    ... 
    at.js minify version script
    ...
})();

 

1 reply

Gokul_Agiwal
Community Advisor
Community Advisor
September 13, 2021

Hi @perrin_ennen 

From above what I understood is, you need to minify at.js script and then once it's minify you need to add in JavaScript function wrapper along with custom license information in comment. 

 

Is this understanding correct? 

Perrin_Ennen
Community Advisor
Community Advisor
September 14, 2021

Yes exactly.

Gokul_Agiwal
Community Advisor
Gokul_AgiwalCommunity AdvisorAccepted solution
Community Advisor
September 16, 2021

Any particular reason doing that? if you download at.js version that already been minify. 

 

May be you need to try this 

 

 /**
 * @License
 *  
 * @License
 * at.js 2.6.1 | (c) Adobe Systems Incorporated | All rights reserved
 *   
 */
// Wrapper function which executed on library loaded event
(function() {
    ... 
    at.js minify version script
    ...
})();