summaryrefslogtreecommitdiffstats
path: root/webapp/stores
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-06-18 13:45:28 -0400
committerGitHub <noreply@github.com>2017-06-18 13:45:28 -0400
commitacdab8cce6656c2fced5802c4692604773b0055b (patch)
treefd8722674a2fb51ce157dbf861d3487278854c59 /webapp/stores
parent64eb968b7d080645f96c489b034f31bb9ed70ba4 (diff)
downloadchat-acdab8cce6656c2fced5802c4692604773b0055b.tar.gz
chat-acdab8cce6656c2fced5802c4692604773b0055b.tar.bz2
chat-acdab8cce6656c2fced5802c4692604773b0055b.zip
Fix scroll store typo and user action copy/paste errors (#6680)
Diffstat (limited to 'webapp/stores')
-rw-r--r--webapp/stores/scroll_store.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/stores/scroll_store.jsx b/webapp/stores/scroll_store.jsx
index 03a5f4e08..4f5abd64a 100644
--- a/webapp/stores/scroll_store.jsx
+++ b/webapp/stores/scroll_store.jsx
@@ -14,7 +14,7 @@ class ScrollStoreClass extends EventEmitter {
this.on(UPDATE_POST_SCROLL_EVENT, callback);
}
- removePostScrollLisener(callback) {
+ removePostScrollListener(callback) {
this.removeListener(UPDATE_POST_SCROLL_EVENT, callback);
}
}