ChatBug Fix: Scrolling

Pevents scrolling of kongregate chat from freazing at a certain point.

  1. // ==UserScript==
  2. // @name ChatBug Fix: Scrolling
  3. // @namespace skyboy@kongregate
  4. // @author skyboy
  5. // @version 1.0.0
  6. // @description Pevents scrolling of kongregate chat from freazing at a certain point.
  7. // @include http://www.kongregate.com/games/*/*
  8. // @exclude http://www.kongregate.com/games/*/*/*
  9. // @homepage http://userscripts.org/scripts/show/72291
  10. // ==/UserScript==
  11. if (/^\/?games\/[^\/]+\/[^\/?]+(\?.*)?$/.test(window.location.pathname))
  12. setTimeout(function() {
  13. window.location.assign("javascript:(function(){var T=holodeck.activeDialogue();(T.scrollToBottom=(ChatDialogue.prototype.scrollToBottom=function(){var T=this._message_window_node;T.scrollTop=T.scrollHeight+20})).call(T);})();void(0);");
  14. }, 1250);