tontof / kriss_feed

A simple and smart (or stupid) feed reader
281 stars 53 forks source link

Prevent default browser scroll in space key event #355

Open ghost opened 9 years ago

ghost commented 9 years ago

Very minor issue but it annoyed me to no end. Page scrolls when using the space key, so closing an item scroll the page every time. I didn't notice this until I set the number of items per page to overflow the window. script.js

case 32: // 'space'
        toggleCurrentItem();
        e.preventDefault(); // Added this, but it's not the best solution since it turns a key completely off