/*
* How to setup a textarea that allows typing with a Russian Virtual Keyboard.
*/
google.load("elements", "1", {packages: "keyboard"});
function onLoad() {
var content = document.getElementById('content');
// Create the HTML for out text area
content.innerHTML = '
(Scroll down) ' +
'You can click the buttons on the onscreen ' +
'keyboard to type Russian. You can also type Russian '+
'with your keyboard. When you need to type English, ' +
'please click the [-] button to minimize the keyboard.' +
'
';
var kbd = new google.elements.keyboard.Keyboard(
[google.elements.keyboard.LayoutCode.RUSSIAN],
['t1']);
}
google.setOnLoadCallback(onLoad);