@Mike Creuzer
Does the page pagination support keyboard strokes?
I couldn't find if it does, but I added a bit of Javascript myself which allows this:
In template 'page_container_js_head' at bottom inside condition <xen:if is="@uix_postPagination"> I appended this piece of script to the bottom, which allows me to use left/right keys to flick between posts and pages.
Code:
<script>
document.onkeydown = checkKey;
function checkKey(e) {
e = e || window.event;
if (e.keyCode == '37') {
// left arrow
audentio.pagination.prevPost();
} else if (e.keyCode == '39') {
// right arrow
audentio.pagination.nextPost();
}
}
</script>
The only problem is when it moves it goes slightly too far into the next post and obscures some of the text - do you know which variable I can change to offset this?