Positioning of pages within xanaviewer.

This commit is contained in:
Edward Betts 2018-12-05 16:16:40 +00:00
parent 538d90a673
commit 81042734dc
2 changed files with 16 additions and 5 deletions

View file

@ -54,7 +54,9 @@ $(function() {
size_svg();
$(window).resize(size_svg);
reset(); // clear all documents and bridges
docs.forEach(fulfil);
docs.forEach((doc, index) => {
fulfil(doc, index, docs.length);
});
});
</script>