From bc1927dc1e9c3e58b2a89803618c57a631c74b87 Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Wed, 10 Feb 2016 15:28:00 -0500 Subject: [PATCH] FIX: Tab was broken with keyboard shortcuts --- app/assets/javascripts/discourse/widgets/post.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/widgets/post.js.es6 b/app/assets/javascripts/discourse/widgets/post.js.es6 index 7396c4addde..b82b2b9750c 100644 --- a/app/assets/javascripts/discourse/widgets/post.js.es6 +++ b/app/assets/javascripts/discourse/widgets/post.js.es6 @@ -315,7 +315,7 @@ createWidget('post-article', { }, html(attrs, state) { - const rows = [h('a.tabLoc')]; + const rows = [h('a.tabLoc', { attributes: { href: ''} })]; if (state.repliesAbove.length) { const replies = state.repliesAbove.map(p => this.attach('embedded-post', p, { state: { above: true } })); rows.push(h('div.row', h('section.embedded-posts.top.topic-body.offset2', replies)));