]>
git.r.bdr.sh - rbdr/blog/blob - static/js/blog.js
8 kEntryPoint: '.event-details',
10 // Application entry point, for now just band to keyboard
14 window
.document
.addEventListener('keydown', internals
._onKeyDown
);
17 // Handles key events to point to the correct blog post.
21 if (['1','2','3'].indexOf(event
.key
) > -1) {
22 window
.location
.hash
= event
.key
;
27 window
.addEventListener('load', internals
.main
);