From 37cf85eb36f14d5d6520e3e27f813edb8c4b6738 Mon Sep 17 00:00:00 2001
From: Thomas Lange <code@nerdmind.de>
Date: Mon, 20 Mar 2017 22:10:01 +0100
Subject: The javascript part was outsourced to a new file to reduce duplicate
 code.

---
 template/standard/html/post/main.php | 18 +++---------------
 1 file changed, 3 insertions(+), 15 deletions(-)

(limited to 'template/standard/html/post/main.php')

diff --git a/template/standard/html/post/main.php b/template/standard/html/post/main.php
index 3f50c76..5104ba9 100644
--- a/template/standard/html/post/main.php
+++ b/template/standard/html/post/main.php
@@ -20,27 +20,15 @@ $time = "<time datetime=\"{$POST['ATTR']['TIME_INSERT']}\" title=\"".parseDateti
 <section id="site-navi">
 
 	<?php if($POST['PREV']): ?>
-		<div><a href="<?=$POST['PREV']['URL']?>" title="<?=$Language->text('prev_post')?> »<?=escapeHTML($POST['PREV']['ATTR']['NAME'])?>«"><i class="fa fa-arrow-left"></i></a></div>
+		<div><a id="prev-site" href="<?=$POST['PREV']['URL']?>" title="<?=$Language->text('prev_post')?> »<?=escapeHTML($POST['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($POST['NEXT']): ?>
-		<div><a href="<?=$POST['NEXT']['URL']?>" title="<?=$Language->text('next_post')?> »<?=escapeHTML($POST['NEXT']['ATTR']['NAME'])?>«"><i class="fa fa-arrow-right"></i></a></div>
+		<div><a id="next-site" href="<?=$POST['NEXT']['URL']?>" title="<?=$Language->text('next_post')?> »<?=escapeHTML($POST['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($POST['PREV'] ? $POST['PREV']['URL'] : FALSE); ?>;
-	var nextPageURL = <?php echo json_encode($POST['NEXT'] ? $POST['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
-- 
cgit v1.2.3