We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9516c7 commit e14f059Copy full SHA for e14f059
README.md
@@ -35,6 +35,18 @@ php bin/magento setup:di:compile
35
php bin/magento setup:static-content:deploy
36
```
37
38
+## GET LIST OF USED JS
39
+```
40
+/* Use in browser console */
41
+globalSrc = [];
42
+jQuery('script').each(function(){
43
+if (!jQuery(this).attr('src')) return;
44
+var src = (jQuery(this).attr('src').replace('PATH_TO_JS', ''));
45
+globalSrc.push(src)
46
+})
47
+console.log(JSON.stringify(globalSrc));
48
49
+
50
## Support
51
If you have any issues, please [contact us](mailto:support@magefan.com)
52
then if you still need help, open a bug report in GitHub's
0 commit comments