diff --git a/src/plugins/keyboard.ts b/src/plugins/keyboard.ts index 6fa85037a..fa96cde64 100644 --- a/src/plugins/keyboard.ts +++ b/src/plugins/keyboard.ts @@ -30,24 +30,34 @@ export class Keyboard { console.log("hideKeyboardAccessoryBar method has been removed temporarily.") } + /** + * Force keyboard to be shown. + * @platforms ['Android','BlackBerry 10','Windows'] + */ + @Cordova({ + sync: true + }) + static show() : void {} + /** * Close the keyboard if open + * @platforms ['iOS','Android','BlackBerry 10','Windows'] */ @Cordova({ sync: true }) static close() : void {} + /** + * Prevents the native UIScrollView from moving when an input is focused. + * @platforms ['iOS','Windows'] + * @param disable + */ @Cordova({ sync: true }) static disableScroll(disable : boolean) : void {} - @Cordova({ - sync: true - }) - static show() : void {} - // TODO add event listener } \ No newline at end of file