From 8bc499f221fdfb7fb7d23bb93517e6561d330939 Mon Sep 17 00:00:00 2001 From: Ibrahim Hadeed Date: Mon, 15 Aug 2016 13:37:24 -0400 Subject: [PATCH] fix(photo-viewer): method is static --- src/plugins/photo-viewer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/photo-viewer.ts b/src/plugins/photo-viewer.ts index 2c61a77d5..95728f0fd 100644 --- a/src/plugins/photo-viewer.ts +++ b/src/plugins/photo-viewer.ts @@ -24,5 +24,5 @@ export class PhotoViewer { * @param options {any} */ @Cordova({sync: true}) - show(url: string, title?: string, options?: {share?: boolean; }): void { } + static show(url: string, title?: string, options?: {share?: boolean; }): void { } }