32
function showAlertWithTimeout ()
34
notifyItSuccess ("The keyboard is blocked for a short while")
35
$("#textinput").prop ("readonly", true);
36
setTimeout (enableTextInput, 1000);
40
function enableTextInput ()
42
$("#textinput").prop ("readonly", false);