Gustavo Luigi 2022-09-01 20:02:36 +02:00
parent 5f79d45b5b
commit b8e77ca5f4
1 changed files with 19 additions and 14 deletions

View File

@ -294,6 +294,7 @@
objProducts[index].quantity = quantity; objProducts[index].quantity = quantity;
updateProductsInLocalStorage(); updateProductsInLocalStorage();
}); });
if(objProducts.length > 0) {
let url = null; let url = null;
if(window.location.origin == 'http://localhost') url = window.location.origin+'/areya-energy/public/'+btoa(JSON.stringify(objProducts)); if(window.location.origin == 'http://localhost') url = window.location.origin+'/areya-energy/public/'+btoa(JSON.stringify(objProducts));
else url = window.location.origin+'/'+btoa(JSON.stringify(objProducts)); else url = window.location.origin+'/'+btoa(JSON.stringify(objProducts));
@ -308,6 +309,10 @@
if(navigator.share) { try { await navigator.share(shareData); } catch(err) { console.warn(err); } } if(navigator.share) { try { await navigator.share(shareData); } catch(err) { console.warn(err); } }
else { console.warn('Native Web Sharing not supported'); } else { console.warn('Native Web Sharing not supported'); }
}); });
}else{
$('#cart-link').hide();
$("#btn-share").hide();
}
}); });
</script> </script>
@yield('scripts') @yield('scripts')