From d5363e2cf35d69215904b1c899e4cafd0f1c632f Mon Sep 17 00:00:00 2001 From: Gubolin Date: Sun, 7 Sep 2014 09:12:00 +0200 Subject: show virtual keyboard in Android (offline app only) (fix #81) --- morphic.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'morphic.js') diff --git a/morphic.js b/morphic.js index 2a242f2..efdf139 100644 --- a/morphic.js +++ b/morphic.js @@ -10778,6 +10778,11 @@ WorldMorph.prototype.edit = function (aStringOrTextMorph) { this.virtualKeyboard.style.top = this.cursor.top() + pos.y + "px"; this.virtualKeyboard.style.left = this.cursor.left() + pos.x + "px"; this.virtualKeyboard.focus(); + if (cordova) { + if (cordova.plugins.SoftKeyboard) { // Android only + cordova.plugins.SoftKeyboard.show(); // Issue #81 + } + } } if (MorphicPreferences.useSliderForInput) { -- cgit v1.3.1