Scripts properly organized – Nothing extra
What is “Scripts properly organized” in our understanding
Scripts added only when needed
Our main policy is not to use JS scripts where we can do without them.
Most often, we try to use pure CSS in our developments, as well as PHP to transfer the load from the browser to the server.
Minimum scripts for modules to work
There are modules in which you cannot do without JS scripts. In such situations, we try to minimize the proportion of script work, as well as optimize and reduce the code.
Scripts are connected only if they are used
If the module is disabled, the scripts for its operation do not get into the load queue, which means they do not load the page.
Demo comment
Reply to demo comment
New demo comment