From de07df6f206a441df8509711c067b0252ea0396b Mon Sep 17 00:00:00 2001 From: Ibby Date: Sat, 7 Jan 2017 05:44:38 -0500 Subject: [PATCH] fix(inappbrowser): fix insertCSS method name closes #921 --- 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 b0e074011..7493d893b 100644 --- a/src/plugins/inappbrowser.ts +++ b/src/plugins/inappbrowser.ts @@ -81,7 +81,7 @@ export class InAppBrowser { /** * Injects JavaScript code into the InAppBrowser window. - * @param script Details of the script to run, specifying either a file or code key. + * @param script {Object} Details of the script to run, specifying either a file or code key. * @returns {Promise} */ @CordovaInstance() @@ -89,11 +89,11 @@ export class InAppBrowser { /** * Injects CSS into the InAppBrowser window. - * @param {Object} Details of the script to run, specifying either a file or code key. + * @param css {Object} Details of the script to run, specifying either a file or code key. * @returns {Promise} */ @CordovaInstance() - insertCss(css: {file?: string, code?: string}): Promise {return; } + insertCSS(css: {file?: string, code?: string}): Promise {return; } /** * A method that allows you to listen to events happening in the browser.