Commit 003dfcb6 authored by miripiruni's avatar miripiruni

Fix for JSDoc; fix for keydown

parent 6be21562
...@@ -117,7 +117,7 @@ window.shower = (function(window, document, undefined) { ...@@ -117,7 +117,7 @@ window.shower = (function(window, document, undefined) {
/** /**
* Get slide id from HTML element. * Get slide id from HTML element.
* @private * @private
* @param {HTMLElement} el * @param {Node} el
* @returns {String} * @returns {String}
*/ */
shower._getSlideIdByEl = function(el) { shower._getSlideIdByEl = function(el) {
...@@ -135,7 +135,7 @@ window.shower = (function(window, document, undefined) { ...@@ -135,7 +135,7 @@ window.shower = (function(window, document, undefined) {
/** /**
* For touch devices: check if link is clicked. * For touch devices: check if link is clicked.
* *
* @TODO: add support for textareas/inputs/etc. * @TODO: add support for textarea/input/etc.
* *
* @private * @private
* @param {HTMLElement} e * @param {HTMLElement} e
...@@ -646,14 +646,12 @@ window.shower = (function(window, document, undefined) { ...@@ -646,14 +646,12 @@ window.shower = (function(window, document, undefined) {
}, false); }, false);
document.addEventListener('keydown', function(e) { document.addEventListener('keydown', function(e) {
var currentSlideNumber, var currentSlideNumber;
isInnerNavCompleted;
// Shortcut for alt, ctrl and meta keys // Shortcut for alt, ctrl and meta keys
if (e.altKey || e.ctrlKey || e.metaKey) { return; } if (e.altKey || e.ctrlKey || e.metaKey) { return; }
currentSlideNumber = shower.getCurrentSlideNumber(), currentSlideNumber = shower.getCurrentSlideNumber();
isInnerNavCompleted = true;
switch (e.which) { switch (e.which) {
case 116: // F5 case 116: // F5
......
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