Bind left / right to previous / next page.

This commit is contained in:
Sébastien Lucas 2012-10-11 21:43:37 +02:00
rodič 008ac70dc3
revize d28552a485
1 změnil soubory, kde provedl 20 přidání a 2 odebrání

Zobrazit soubor

@ -104,6 +104,26 @@
return false;
});
});
<?php
if ($currentPage->isPaginated ()) {
$prevLink = $currentPage->getPrevLink ();
$nextLink = $currentPage->getNextLink ();
?>
$(document).keydown(function(e){
<?php
if (!is_null ($prevLink)) {
echo "if (e.keyCode == 37) {\$(location).attr('href','" . $prevLink->hrefXhtml () . "');}";
}
if (!is_null ($nextLink)) {
echo "if (e.keyCode == 39) {\$(location).attr('href','" . $nextLink->hrefXhtml () . "');}";
}
?>
});
<?php
}
?>
</script>
</head>
<body>
@ -220,8 +240,6 @@
</div>
<?php
if ($currentPage->isPaginated ()) {
$prevLink = $currentPage->getPrevLink ();
$nextLink = $currentPage->getNextLink ();
?>
<div class="foot">
<div class="footcenter">