Skip to content
This repository has been archived by the owner on Sep 4, 2023. It is now read-only.

Commit

Permalink
fixed an error in data-non-touch-only-section no working for left slides
Browse files Browse the repository at this point in the history
  • Loading branch information
rparree committed Mar 15, 2019
1 parent 381b6f7 commit 666d513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/reveal.js
Original file line number Diff line number Diff line change
Expand Up @@ -8482,7 +8482,7 @@
var r = $t.prev("section[data-hidden-section]").length;
r = r + $t.prev("section[data-right-only-section]").length;
if (isTouchDevice)
r = r + $t.prev("section[t]").length;
r = r + $t.prev("section[data-non-touch-only-section]").length;
else
r = r + $t.prev("section[data-touch-only-section]").length;
if ( r > 0 )
Expand Down

0 comments on commit 666d513

Please sign in to comment.