~bibledit/bibledit/ubuntu-cloud

« back to all changes in this revision

Viewing changes to editusfm/index.js

  • Committer: Teus Benschop
  • Date: 2022-08-30 18:42:32 UTC
  • Revision ID: teusjannette@gmail.com-20220830184232-a5bf5fkj14cqdx01
new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
var usfmEditorUniqueID = Math.floor (Math.random() * 100000000);
21
21
 
22
22
 
23
 
$(document).ready (function () {
 
23
$(document).ready (function ()
 
24
{
 
25
  // Listens for bibleselect option tags value change to update the loaded Bible.
 
26
  var bibleSelectionElement = document.querySelector ("#bibleselect");
 
27
  bibleSelectionElement.addEventListener ('change', () => {
 
28
    $.post ("index", { bibleselect: bibleSelectionElement.value })
 
29
      .done (function() { window.location.reload () });
 
30
  });
24
31
 
25
32
  // Make the editor's menu to never scroll out of view.
26
33
  var bar = $ ("#editorheader").remove ();