继续操作前请注册或者登录。

inoreader scroll bug fix

Fixes scrolling issues due to adblock on inoreader.com

  1. // ==UserScript==
  2. // @name inoreader scroll bug fix
  3. // @namespace http://twitter.com/GDorn
  4. // @description Fixes scrolling issues due to adblock on inoreader.com
  5. // @include http://www.inoreader.com/*
  6. // @include https://www.inoreader.com/*
  7. // @grant none
  8. // @version 1
  9. // ==/UserScript==
  10.  
  11. $(document).ready(function(){
  12. $('#reader_pane').keyup(
  13. function(event){
  14. if (event.which == 78 || event.which == 80){
  15. setTimeout(function(){$(".article_current").get(0).scrollIntoView();}, 250);
  16. }
  17. }
  18. )
  19. }
  20. );