first commit

This commit is contained in:
2024-10-25 14:16:28 +02:00
commit 925276dbb2
33795 changed files with 4780077 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
/**
* 2019 ModuleFactory.co
*
* @author ModuleFactory.co <info@modulefactory.co>
* @copyright 2019 ModuleFactory.co
* @license ModuleFactory.co Commercial License
*/
var FSAU = FSAU || { };
FSAU.hash = '';
$(document).ready(function(){
FSAU.anchor = window.location.hash;
if (FSAU.anchor) {
var refresh_url = false;
for (var anchor in FSAU.product_urls) {
if (anchor == FSAU.anchor) {
if (!FSAU.product_urls.hasOwnProperty(anchor)) {
continue;
}
refresh_url = FSAU.product_urls[anchor];
}
}
if (refresh_url) {
prestashop.emit('updateProduct', { reason: { productUrl: refresh_url }});
}
}
});