From 659446c075f04f2a52faa5f51d01e14dd8d4aa08 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Wed, 30 Aug 2017 18:56:51 +0900
Subject: [PATCH] Fix bug

---
 CHANGELOG.md                         | 4 ++++
 src/web/app/mobile/tags/timeline.tag | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 066ce8cfee..3f7dadd948 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@ ChangeLog (Release Notes)
 =========================
 主に notable な changes を書いていきます
 
+unreleased
+----------
+* Fix: モバイル版のタイムラインからリアクションやメニューを開けない
+
 2515 (2017/08/30)
 -----------------
 * New: 投稿のピン留め (#746)
diff --git a/src/web/app/mobile/tags/timeline.tag b/src/web/app/mobile/tags/timeline.tag
index d8df8b2663..bc01394554 100644
--- a/src/web/app/mobile/tags/timeline.tag
+++ b/src/web/app/mobile/tags/timeline.tag
@@ -190,7 +190,7 @@
 				<button class={ reacted: p.my_reaction != null } onclick={ react } ref="reactButton">
 					<i class="fa fa-plus"></i><p class="count" if={ p.reactions_count > 0 }>{ p.reactions_count }</p>
 				</button>
-				<button class={ reacted: p.my_reaction != null } onclick={ react } ref="reactButton">
+				<button onclick={ menu } ref="menuButton">
 					<i class="fa fa-ellipsis-h"></i>
 				</button>
 			</footer>