You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have following js structure - all js are loaded to user at once, except page-specific initializers ( e.g. init.main.js , init.subscription.js, init.product_list.js ). So usual structure looks like :
init.product_list.js - is specific for 'products' page, other pages have it's own initializers( init.offers.js for example ), so it's impossible to add init.* functions to 'all' group.
My point is - (function($){...}).call(this) - can damage working code ( which works without PIPELINE=True ). Why it's needed and hard coded? I suppose it should be possible to disable such behavior in settings.
We have following js structure - all js are loaded to user at once, except page-specific initializers ( e.g. init.main.js , init.subscription.js, init.product_list.js ). So usual structure looks like :
init.product_list.js
tries to call functions from 'all', but cannot do it, ascompressed_js
encapsulates everything insideDemonstration -http://jsfiddle.net/TwSqe/11/
Is it possible to solve this issue without modifying code ?
The text was updated successfully, but these errors were encountered: