From 6e1bf0d3de467ef8dc898e79fc858f469fb7528a Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Sun, 31 May 2015 11:17:41 +0930 Subject: [PATCH] Fix post scrubber closing on mobile --- framework/core/js/forum/src/components/post-scrubber.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/js/forum/src/components/post-scrubber.js b/framework/core/js/forum/src/components/post-scrubber.js index 272e69708..d11cb116b 100644 --- a/framework/core/js/forum/src/components/post-scrubber.js +++ b/framework/core/js/forum/src/components/post-scrubber.js @@ -211,7 +211,7 @@ export default class PostScrubber extends Component { // When any part of the whole scrollbar is clicked, we want to jump to // that position. this.$('.scrubber-scrollbar') - .bind('click touchstart', this.onclick.bind(this)) + .bind('click', this.onclick.bind(this)) // Now we want to make the scrollbar handle draggable. Let's start by // preventing default browser events from messing things up.