From dc9e16bc5ffe71dc62ae4899d379f71256a1a79b Mon Sep 17 00:00:00 2001 From: Sultan Khan Date: Tue, 6 Jul 2021 15:53:32 +0300 Subject: [PATCH] share --- .../offersdiscount/offer-details/offer-details.component.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mohem/src/app/offersdiscount/offer-details/offer-details.component.ts b/Mohem/src/app/offersdiscount/offer-details/offer-details.component.ts index 3e620d69..1ae6f38d 100644 --- a/Mohem/src/app/offersdiscount/offer-details/offer-details.component.ts +++ b/Mohem/src/app/offersdiscount/offer-details/offer-details.component.ts @@ -35,6 +35,8 @@ export class OfferDetailsComponent implements OnInit { return temporalDivElement.textContent || temporalDivElement.innerText || ""; } share() { - this.socialSharing.share(this.details.Description, this.details.Title, this.details.Banner_Image) + this.socialSharing.share(this.details.Description, this.details.Title, this.details.Banner_Image).then((result) => { + console.log(result); + }) } }