~bibledit/bibledit/client

« back to all changes in this revision

Viewing changes to developer/index.js

  • Committer: teusjannette at gmail
  • Date: 2020-07-19 14:10:51 UTC
  • Revision ID: teusjannette@gmail.com-20200719141051-pfs955twaw2og5y1
new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  });
29
29
}
30
30
 
 
31
 
 
32
function showAlertWithTimeout ()
 
33
{
 
34
  notifyItSuccess ("The keyboard is blocked for a short while")
 
35
  $("#textinput").prop ("readonly", true);
 
36
  setTimeout (enableTextInput, 1000);
 
37
}
 
38
 
 
39
 
 
40
function enableTextInput ()
 
41
{
 
42
  $("#textinput").prop ("readonly", false);
 
43
}
 
44