From 7599c7fe87e5cec7bd9875032baa45eb90bba5b0 Mon Sep 17 00:00:00 2001 From: Jason Cassidy Date: Wed, 9 Jun 2021 17:35:27 +0100 Subject: [PATCH] fix ImageSource link use full url --- plugins/social-share.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/social-share.md b/plugins/social-share.md index 07cb48a0..9ae5073b 100644 --- a/plugins/social-share.md +++ b/plugins/social-share.md @@ -25,7 +25,7 @@ import * as SocialShare from "@nativescript/social-share"; ### shareImage(ImageSource image, [optional] String subject) -The `shareImage()` method expects an [`ImageSource`](/api-reference/classes/imagesource.html) object. The code below loads an image from the app and invokes the share widget with it: +The `shareImage()` method expects an [`ImageSource`](https://docs.nativescript.org/api-reference/classes/imagesource.html) object. The code below loads an image from the app and invokes the share widget with it: ```JavaScript // ------------ JavaScript ------------------