docs(): update docs

This commit is contained in:
Ibby 2016-12-06 09:18:37 -05:00
parent a38adf53c3
commit a4216fd8ca

View File

@ -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<any> {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));
});
}
}