Skip to content

Commit

Permalink
fix for small bug in displayed code
Browse files Browse the repository at this point in the history
  • Loading branch information
arimeq committed Nov 10, 2023
1 parent 5140d54 commit 65ae6ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion slides/index-en.html
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ <h3>Bonus 3 - Loops</h3>
<pre><code class="lang-javascript">function showSlide2 ( ) {
showSlide( 2 );
}
document.querySelector('#pin1').addEventListener( 'click', showSlide2 );</code></pre>
document.querySelector('#pin2').addEventListener( 'click', showSlide2 );</code></pre>
<p>...</p>
</div>
</section>
Expand Down
2 changes: 1 addition & 1 deletion slides/index-ua.html
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ <h3 class="fragment fade-left">Бонус 3 - Цикли</h3>
<pre><code class="lang-javascript">function showSlide2 ( ) {
showSlide( 2 );
}
document.querySelector('#pin1').addEventListener( 'click', showSlide2 );</code></pre>
document.querySelector('#pin2').addEventListener( 'click', showSlide2 );</code></pre>
<p>...</p>
</div>
</section>
Expand Down
2 changes: 1 addition & 1 deletion slides/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ <h3 >Bonus 3 - Pętle</h3>
<pre><code class="lang-javascript">function showSlide2 ( ) {
showSlide( 2 );
}
document.querySelector('#pin1').addEventListener( 'click', showSlide2 );</code></pre>
document.querySelector('#pin2').addEventListener( 'click', showSlide2 );</code></pre>
<p>...</p>
</div>
</section>
Expand Down

0 comments on commit 65ae6ab

Please sign in to comment.