~bibledit/bibledit/ubuntu-cloud

« back to all changes in this revision

Viewing changes to edit/preview.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:
45
45
  } else {
46
46
    return;
47
47
  }
48
 
  
 
48
 
49
49
  if ((previewNavigationBook != previewLoadedBook) || (previewNavigationChapter != previewLoadedChapter)) {
50
50
    previewLoadChapter ();
51
51
  }
68
68
  previewChapterIdOnServer = 0;
69
69
  if (previewChapterInitialized) location.reload ();
70
70
  else previewChapterInitialized = true;
 
71
  
 
72
  
 
73
 
 
74
  
71
75
}
72
76
 
73
77
 
109
113
  $ ("#workspacewrapper").stop ();
110
114
  var verses = [0];
111
115
  var navigated = false;
112
 
  $ (".v").each (function (index) {
 
116
  $ (".i-v").each (function (index) {
113
117
    var element = $(this);
114
118
    verses = usfm_get_verse_numbers (element[0].textContent);
115
119
    if (verses.indexOf (parseInt (previewNavigationVerse)) >= 0) {
127
131
      }
128
132
    }
129
133
  });
130
 
  if (editorNavigationVerse == 0) {
 
134
  if (previewNavigationVerse == 0) {
131
135
    $ ("#workspacewrapper").animate ({ scrollTop: 0 }, 500);
132
136
  }
133
137
}