aboutsummaryrefslogtreecommitdiff
path: root/picarones-elm/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-03-07do not load all slides at oncestuebinm1-1/+5
to prevent noticable load times when switching slides, picarones previously loaded all slides at once, and then only displayed whichever one was applicable. This cause problems with larger slidesets; instead, it now loads the current slides and the two previous and next slides (wrapping around at the end/beginning).
2021-03-07Load slides from url given in uri fragmentstuebinm1-7/+11
Syntax is: https://domain-to-app#<prefix-for-slides>#<number-of-slides> Slides must be .png image files numbered as 01.png, 02.png ...