summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_list.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components/post_list.jsx')
-rw-r--r--web/react/components/post_list.jsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/web/react/components/post_list.jsx b/web/react/components/post_list.jsx
index 1850d6256..96bcf28e1 100644
--- a/web/react/components/post_list.jsx
+++ b/web/react/components/post_list.jsx
@@ -65,10 +65,13 @@ module.exports = React.createClass({
// Timeout exists for the DOM to fully render before making changes
var self = this
- setTimeout(function initialScroll() {
+ function initialScroll() {
self.holdPosition = false;
self.scrollWindow();
- }, 1);
+ $(document).off('DOMContentLoaded', initialScroll)
+ }
+
+ $(document).on('DOMContentLoaded', initialScroll);
// Handle browser resizing
$(window).resize(this.onResize);