A Pen by Thomas Kimura on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* ------------------------------------------------------------ | |
* IMPORTANT: The contents of this file are auto-generated. | |
* | |
* This file may be updated by the Shopify admin theme editor | |
* or related systems. Please exercise caution as any changes | |
* made to this file may be overwritten. | |
* ------------------------------------------------------------ | |
*/ | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
//KEYBOARD NAVIGATION FOR PERMALINK | |
document.body.onkeydown = function(e){ | |
if (e == null) { | |
keycode = event.keyCode; | |
} else { | |
keycode = e.which; | |
} |
A Pen by Thomas Kimura on CodePen.