From a4216fd8ca324369b5b28941761f2f55b2991eba Mon Sep 17 00:00:00 2001 From: Ibby Date: Tue, 6 Dec 2016 09:18:37 -0500 Subject: [PATCH] docs(): update docs --- src/plugins/inappbrowser.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/inappbrowser.ts b/src/plugins/inappbrowser.ts index 34f37e219..b0e074011 100644 --- a/src/plugins/inappbrowser.ts +++ b/src/plugins/inappbrowser.ts @@ -29,6 +29,8 @@ export interface InAppBrowserEvent extends Event { * browser.insertCSS(...); * browser.close(); * ``` + * @interfaces + * InAppBrowserEvent */ @Plugin({ pluginName: 'InAppBrowser', @@ -93,9 +95,6 @@ export class InAppBrowser { @CordovaInstance() insertCss(css: {file?: string, code?: string}): Promise {return; } - - - /** * A method that allows you to listen to events happening in the browser. * @param {string} name of the event @@ -107,4 +106,5 @@ export class InAppBrowser { return () => this._objectInstance.removeEventListener(event, observer.next.bind(observer)); }); } + }