~bibledit/bibledit/ubuntu-cloud

« back to all changes in this revision

Viewing changes to read/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:
24
24
 
25
25
$ (document).ready (function ()
26
26
{
 
27
  // Listens for bibleselect option tags value change to update the loaded Bible.
 
28
  var bibleSelectionElement = document.querySelector ("#bibleselect");
 
29
  bibleSelectionElement.addEventListener ('change', () => {
 
30
    $.post ("index", { bibleselect: bibleSelectionElement.value })
 
31
      .done (function() { window.location.reload () });
 
32
  });
 
33
 
27
34
  // Make the editor's menu to never scroll out of view.
28
35
  var bar = $ ("#editorheader").remove ();
29
36
  $ ("#workspacemenu").append (bar);