diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2013-11-25 14:45:14 -0500 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2013-11-25 14:45:14 -0500 |
commit | 3427561b64a45716e897758509bf23a743492dda (patch) | |
tree | 2fb19d091f34f484ae4d315ee97fe7be8c8e3b8a /test/test.html | |
parent | ef82645589dd265e6fc611d17388396f11279751 (diff) | |
download | fosdem-2018-presentation-3427561b64a45716e897758509bf23a743492dda.tar fosdem-2018-presentation-3427561b64a45716e897758509bf23a743492dda.tar.gz |
rewrite fragment sorting to account for multiple fragments with the same index
Diffstat (limited to 'test/test.html')
-rw-r--r-- | test/test.html | 33 |
1 files changed, 26 insertions, 7 deletions
diff --git a/test/test.html b/test/test.html index 81d2f16..094f3c7 100644 --- a/test/test.html +++ b/test/test.html @@ -35,13 +35,32 @@ </section> </section> - <section> - <h1>4</h1> - <ul> - <li class="fragment">4.1</li> - <li class="fragment">4.2</li> - <li class="fragment">4.3</li> - </ul> + <section id="fragment-slides"> + <section> + <h1>3.1</h1> + <ul> + <li class="fragment">4.1</li> + <li class="fragment">4.2</li> + <li class="fragment">4.3</li> + </ul> + </section> + + <section> + <h1>3.2</h1> + <ul> + <li class="fragment" data-fragment-index="0">4.1</li> + <li class="fragment" data-fragment-index="0">4.2</li> + </ul> + </section> + + <section> + <h1>3.3</h1> + <ul> + <li class="fragment" data-fragment-index="1">3.3.1</li> + <li class="fragment" data-fragment-index="4">3.3.2</li> + <li class="fragment" data-fragment-index="4">3.3.3</li> + </ul> + </section> </section> <section> |