SilentComics/Strip

View on GitHub
assets/js/min/keyboard-image-navigation-min.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Strip keyboard support for image navigation.
 */
!function(i){i(document).on("keydown.strip",function(t){var e=!1;
// Left arrow key code.
if(37===t.which)e=i(".previous a").attr("href");
// Right arrow key code.
else{if(39!==t.which)return;e=i(".next a").attr("href")}e&&!i("textarea, input").is(":focus")&&(window.location=e)})}(jQuery);