FIX: Missing tab delegation

This commit is contained in:
Robin Ward 2014-11-10 12:04:16 -05:00
parent 9f127d8183
commit e1d26736b2

View File

@ -240,7 +240,7 @@ Discourse.KeyboardShortcuts = Ember.Object.createWithMixins({
if ($article.is('.topic-post')) {
var tabLoc = $article.find('a.tabLoc');
if (tabLoc.length === 0) {
tabLoc = $('<a class="tabLoc"></a>');
tabLoc = $('<a href class="tabLoc"></a>');
$article.prepend(tabLoc);
}
tabLoc.focus();