From ca8d57c4dbfe839db28b583caa7d599c0cfc023a Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Fri, 23 Jun 2017 12:09:56 -0400 Subject: PLT-6890 Fix various scrolling issues (#6727) * Fix various scrolling issues * Move reaction scrolling to reaction list * Handle scrolling when RHS opens * Only run scroll update code when posts change --- webapp/stores/scroll_store.jsx | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 webapp/stores/scroll_store.jsx (limited to 'webapp/stores') diff --git a/webapp/stores/scroll_store.jsx b/webapp/stores/scroll_store.jsx deleted file mode 100644 index 4f5abd64a..000000000 --- a/webapp/stores/scroll_store.jsx +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import EventEmitter from 'events'; - -const UPDATE_POST_SCROLL_EVENT = 'update_post_scroll'; - -class ScrollStoreClass extends EventEmitter { - emitPostScroll() { - this.emit(UPDATE_POST_SCROLL_EVENT); - } - - addPostScrollListener(callback) { - this.on(UPDATE_POST_SCROLL_EVENT, callback); - } - - removePostScrollListener(callback) { - this.removeListener(UPDATE_POST_SCROLL_EVENT, callback); - } -} - -var ScrollStore = new ScrollStoreClass(); -export default ScrollStore; - -- cgit v1.2.3-1-g7c22