nav: remove jQuery #452

This commit is contained in:
Sören Weber 2023-01-29 16:47:34 +01:00
parent 1491e66580
commit f322e58ddd
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D

View file

@ -365,14 +365,10 @@ function initArrowNav(){
} }
// button navigation // button navigation
jQuery(function() { var e = document.querySelector( 'a.nav-prev' );
jQuery('a.nav-prev').click(function(){ e && e.addEventListener( 'click', navPrev );
location.href = jQuery(this).attr('href'); e = document.querySelector( 'a.nav-next' );
}); e && e.addEventListener( 'click', navNext );
jQuery('a.nav-next').click(function() {
location.href = jQuery(this).attr('href');
});
});
// keyboard navigation // keyboard navigation
// avoid prev/next navigation if we are not at the start/end of the // avoid prev/next navigation if we are not at the start/end of the
@ -384,7 +380,7 @@ function initArrowNav(){
if( !event.shiftKey && !event.ctrlKey && !event.altKey && !event.metaKey ){ if( !event.shiftKey && !event.ctrlKey && !event.altKey && !event.metaKey ){
if( event.which == '37' ){ if( event.which == '37' ){
if( !scrollLeft && el.scrollLeft <= 0 ){ if( !scrollLeft && el.scrollLeft <= 0 ){
jQuery('a.nav-prev').click(); navPrev();
} }
else if( scrollLeft != -1 ){ else if( scrollLeft != -1 ){
clearTimeout( scrollLeft ); clearTimeout( scrollLeft );
@ -393,7 +389,7 @@ function initArrowNav(){
} }
if( event.which == '39' ){ if( event.which == '39' ){
if( !scrollRight && el.scrollLeft + el.clientWidth >= el.scrollWidth ){ if( !scrollRight && el.scrollLeft + el.clientWidth >= el.scrollWidth ){
jQuery('a.nav-next').click(); navNext();
} }
else if( scrollRight != -1 ){ else if( scrollRight != -1 ){
clearTimeout( scrollRight ); clearTimeout( scrollRight );
@ -419,10 +415,12 @@ function initArrowNav(){
}); });
// avoid keyboard navigation for input fields // avoid keyboard navigation for input fields
jQuery(formelements).keydown(function (e) { document.querySelectorAll( formelements ).forEach( function( e ){
if (e.which == '37' || e.which == '39') { e.addEventListener( 'keydown', function( event ){
e.stopPropagation(); if( event.which == 37 || event.which == 39 ){
} event.stopPropagation();
}
});
}); });
} }
@ -630,6 +628,16 @@ function showPrint(){
} }
} }
function navPrev(){
var e = document.querySelector( 'a.nav-prev' );
location.href = e && e.getAttribute( 'href' );
};
function navNext(){
var e = document.querySelector( 'a.nav-next' );
location.href = e && e.getAttribute( 'href' );
};
function initToc(){ function initToc(){
if( isPrint ){ if( isPrint ){
return; return;