Commit abbb7c28 authored by Oleg Roschupkin's avatar Oleg Roschupkin

Update code to make slide id's optional.

Closes issue #60.
parent 92ce9511
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
<h1>Shower Presentation Template</h1> <h1>Shower Presentation Template</h1>
<p>Vadim Makeev, Opera Software</p> <p>Vadim Makeev, Opera Software</p>
</header> </header>
<div class="slide cover" id="Cover"><div> <div class="slide cover"><div>
<section> <section>
<header> <header>
<h2>Shower Presentation Template</h2> <h2>Shower Presentation Template</h2>
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
<img src="pictures/cover.jpg" alt=""> <img src="pictures/cover.jpg" alt="">
</section> </section>
</div></div> </div></div>
<div class="slide" id="Header"><div> <div class="slide"><div>
<section> <section>
<header> <header>
<h2>Header</h2> <h2>Header</h2>
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
<h1>Шаблон презентаций Shower</h1> <h1>Шаблон презентаций Shower</h1>
<p>Вадим Макеев, Opera Software</p> <p>Вадим Макеев, Opera Software</p>
</header> </header>
<div class="slide cover" id="Cover"><div> <div class="slide cover"><div>
<section> <section>
<header> <header>
<h2>Шаблон презентации Shower</h2> <h2>Шаблон презентации Shower</h2>
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
<img src="pictures/cover.jpg" alt=""> <img src="pictures/cover.jpg" alt="">
</section> </section>
</div></div> </div></div>
<div class="slide" id="Header"><div> <div class="slide"><div>
<section> <section>
<header> <header>
<h2>Заголовок</h2> <h2>Заголовок</h2>
......
...@@ -7,6 +7,12 @@ ...@@ -7,6 +7,12 @@
l = slides.length, i; l = slides.length, i;
for (i = 0; i < l; i++) { for (i = 0; i < l; i++) {
// Slide ID's are optional. In case of missing ID we set it to the
// slide number
if (!slides[i].id) {
slides[i].id = i + 1;
}
slideList.push({ slideList.push({
id: slides[i].id, id: slides[i].id,
hasInnerNavigation: null !== slides[i].querySelector('.next') hasInnerNavigation: null !== slides[i].querySelector('.next')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment