# HG changeset patch # User neko259 # Date 2014-10-26 09:13:42 # Node ID cfd5a6121d6da206426da59e40cfd8846e7d3f66 # Parent bf56adb21441450b11e4f1535bb952190a8e5992 Added missing semicolon to the thread update script diff --git a/boards/static/js/thread_update.js b/boards/static/js/thread_update.js --- a/boards/static/js/thread_update.js +++ b/boards/static/js/thread_update.js @@ -118,7 +118,7 @@ function blink(node) { function isPageBottom() { var scroll = $(window).scrollTop() / ($(document).height() - - $(window).height()) + - $(window).height()); return scroll == 1 }