forked from cmda-minor-web/project-2-2223
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from RainbowJM/Tapan
Tapan
- Loading branch information
Showing
4 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// var textarea = document.getElementById("input-text"); | ||
// textarea.addEventListener("click", openKeyboard); | ||
|
||
|
||
// function openKeyboard() { | ||
// $('input-text').keyboard(); | ||
// } | ||
|
||
var textarea = document.getElementById("#input-text"); | ||
|
||
textarea.addEventListener("click", function() { | ||
openKeyboard(); | ||
}); | ||
|
||
function openKeyboard() { | ||
// Create an instance of the Google IME API | ||
var ime = new google.ime.InputMethodEditor(); | ||
|
||
// Call the activate() method to activate the On-Screen Keyboard | ||
ime.activate(["transliteration"], function() { | ||
ime.setLanguage("en"); | ||
ime.setOnStateChangeHandler(function(isOn) { | ||
if (isOn) { | ||
// The On-Screen Keyboard is now active | ||
} else { | ||
// The On-Screen Keyboard is no longer active | ||
} | ||
}); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters