diff --git a/src/@ionic-native/plugins/social-sharing/index.ts b/src/@ionic-native/plugins/social-sharing/index.ts index 82e2f7cf23..039627eb93 100644 --- a/src/@ionic-native/plugins/social-sharing/index.ts +++ b/src/@ionic-native/plugins/social-sharing/index.ts @@ -211,4 +211,14 @@ export class SocialSharing extends IonicNativePlugin { platforms: ['iOS', 'Android'] }) shareVia(appName: string, message: string, subject?: string, image?: string, url?: string): Promise { return; } + + /** + * defines the popup position before call the share method. + * @param targetBounds {string} left, top, width, height + */ + @Cordova({ + sync: true, + platforms: ['iOS'] + }) + setIPadPopupCoordinates(targetBounds: string): void { } }