aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2015-07-07 11:33:56 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2015-07-07 11:33:56 +0200
commitd3b2ed9462606d81a1d2652ac2db075cbbc47028 (patch)
treec27a6f99e9b6fadbc97f281505ca4fe25b26f8a2 /js
parentd88f59cbafaa5fbdb4379f00cde7848dc259f68d (diff)
parent242f2d6c964111dc3d9a3dd958f80537a6223f13 (diff)
downloadfreenode-live-2017-presentation-d3b2ed9462606d81a1d2652ac2db075cbbc47028.tar
freenode-live-2017-presentation-d3b2ed9462606d81a1d2652ac2db075cbbc47028.tar.gz
Merge branch 'controls-buttons-a11y' of https://github.com/marcysutton/reveal.js into dev
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 556f222..a0120b4 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -457,10 +457,10 @@
// Arrow controls
createSingletonNode( dom.wrapper, 'aside', 'controls',
- '<div class="navigate-left"></div>' +
- '<div class="navigate-right"></div>' +
- '<div class="navigate-up"></div>' +
- '<div class="navigate-down"></div>' );
+ '<button class="navigate-left" aria-label="previous slide"></button>' +
+ '<button class="navigate-right" aria-label="next slide"></button>' +
+ '<button class="navigate-up" aria-label="above slide"></button>' +
+ '<button class="navigate-down" aria-label="below slide"></button>' );
// Slide number
dom.slideNumber = createSingletonNode( dom.wrapper, 'div', 'slide-number', '' );