Commit 9243cdf0 authored by Vadim Makeev's avatar Vadim Makeev

home/end listeners for the first/last slide navigation (fn+left/right on Mac)

parent b08f1604
......@@ -42,6 +42,12 @@
case 39 : // Right
current++;
break;
case 36 : // Home
current = 0;
break;
case 35 : // End
current = slideList.length-1;
break;
case 32 : // Space
current += e.shiftKey ? -1 : 1;
break;
......
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