From 0c547ffd8af8964f2f61937d0d2c8aa68aae4f6f Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Sat, 22 Jun 2019 00:20:48 +0000 Subject: [PATCH] "selected" class is wrongly removed from journal edit tabs when switching the issue history tabs (#3058, #31599). Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@18311 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- public/javascripts/application.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/javascripts/application.js b/public/javascripts/application.js index 42da02765..7a2805d97 100644 --- a/public/javascripts/application.js +++ b/public/javascripts/application.js @@ -363,7 +363,7 @@ function showIssueHistory(journal, url) { tab_content = $('#tab-content-history'); tab_content.parent().find('.tab-content').hide(); tab_content.show(); - tab_content.parent().find('div.tabs a').removeClass('selected'); + tab_content.parent().children('div.tabs').find('a').removeClass('selected'); $('#tab-' + journal).addClass('selected'); @@ -389,7 +389,7 @@ function getRemoteTab(name, remote_url, url, load_always = false) { var tab_content = $('#tab-content-' + name); tab_content.parent().find('.tab-content').hide(); - tab_content.parent().find('div.tabs a').removeClass('selected'); + tab_content.parent().children('div.tabs').find('a').removeClass('selected'); $('#tab-' + name).addClass('selected'); replaceInHistory(url); -- 2.39.5