diff options
author | Thomas Lange <code@nerdmind.de> | 2017-03-20 22:10:01 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-03-20 22:10:01 +0100 |
commit | 37cf85eb36f14d5d6520e3e27f813edb8c4b6738 (patch) | |
tree | 9fccb9775715addf2d7149ed290d345c5644a2b3 /template/standard/html/user/main.php | |
parent | e33c245d910e55b8cab407a03e669470509a705d (diff) | |
download | blog-37cf85eb36f14d5d6520e3e27f813edb8c4b6738.tar.gz blog-37cf85eb36f14d5d6520e3e27f813edb8c4b6738.tar.xz blog-37cf85eb36f14d5d6520e3e27f813edb8c4b6738.zip |
The javascript part was outsourced to a new file to reduce duplicate code.
Diffstat (limited to 'template/standard/html/user/main.php')
-rw-r--r-- | template/standard/html/user/main.php | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/template/standard/html/user/main.php b/template/standard/html/user/main.php index d3766dc..c2a5346 100644 --- a/template/standard/html/user/main.php +++ b/template/standard/html/user/main.php @@ -17,27 +17,15 @@ <section id="site-navi"> <?php if($USER['PREV']): ?> - <div><a href="<?=$USER['PREV']['URL']?>" title="<?=$Language->text('prev_user')?> »<?=escapeHTML($USER['PREV']['ATTR']['NAME'])?>«"><i class="fa fa-arrow-left"></i></a></div> + <div><a id="prev-site" href="<?=$USER['PREV']['URL']?>" title="<?=$Language->text('prev_user')?> »<?=escapeHTML($USER['PREV']['ATTR']['NAME'])?>«"><i class="fa fa-arrow-left"></i></a></div> <?php else: ?> <div><a class="disabled"><i class="fa fa-arrow-left"></i></a></div> <?php endif; ?> <?php if($USER['NEXT']): ?> - <div><a href="<?=$USER['NEXT']['URL']?>" title="<?=$Language->text('next_user')?> »<?=escapeHTML($USER['NEXT']['ATTR']['NAME'])?>«"><i class="fa fa-arrow-right"></i></a></div> + <div><a id="next-site" href="<?=$USER['NEXT']['URL']?>" title="<?=$Language->text('next_user')?> »<?=escapeHTML($USER['NEXT']['ATTR']['NAME'])?>«"><i class="fa fa-arrow-right"></i></a></div> <?php else: ?> <div><a class="disabled"><i class="fa fa-arrow-right"></i></a></div> <?php endif; ?> -</section> - -<script> - var prevPageURL = <?php echo json_encode($USER['PREV'] ? $USER['PREV']['URL'] : FALSE); ?>; - var nextPageURL = <?php echo json_encode($USER['NEXT'] ? $USER['NEXT']['URL'] : FALSE); ?>; - - document.addEventListener('keyup', function(event) { - if(!event.ctrlKey && !event.shiftKey) { - (event.keyCode === 37 && prevPageURL) && (window.location.href = prevPageURL); - (event.keyCode === 39 && nextPageURL) && (window.location.href = nextPageURL); - } - }, false) -</script>
\ No newline at end of file +</section>
\ No newline at end of file |