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')