From b8e77ca5f4715495b3839aae4e7eb8c2a5ad8c94 Mon Sep 17 00:00:00 2001 From: Gustavo Luigi Date: Thu, 1 Sep 2022 20:02:36 +0200 Subject: [PATCH] . --- content/master.blade.php | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/content/master.blade.php b/content/master.blade.php index 6e863bf..f798a9c 100644 --- a/content/master.blade.php +++ b/content/master.blade.php @@ -294,20 +294,25 @@ objProducts[index].quantity = quantity; updateProductsInLocalStorage(); }); - let url = null; - 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)); - $('#cart-link').attr('href', url); - $('#cart-link').text(url); - const shareData = { - title: "Share cart list", - text: 'share cart list', - url: url, - }; - $("#btn-share").click(async function() { - if(navigator.share) { try { await navigator.share(shareData); } catch(err) { console.warn(err); } } - else { console.warn('Native Web Sharing not supported'); } - }); + if(objProducts.length > 0) { + let url = null; + 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)); + $('#cart-link').attr('href', url); + $('#cart-link').text(url); + const shareData = { + title: "Share cart list", + text: 'share cart list', + url: url, + }; + $("#btn-share").click(async function() { + if(navigator.share) { try { await navigator.share(shareData); } catch(err) { console.warn(err); } } + else { console.warn('Native Web Sharing not supported'); } + }); + }else{ + $('#cart-link').hide(); + $("#btn-share").hide(); + } }); @yield('scripts')