From: Jean-Philippe Lang Date: Sun, 30 Sep 2018 16:33:46 +0000 (+0000) Subject: Fixed that changing tabs in project settings unselect "Write" tab of project descript... X-Git-Tag: 4.0.0~125 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f7a8a475700b05c72c9acc02c7b1e1a9b358c9ca;p=redmine.git Fixed that changing tabs in project settings unselect "Write" tab of project description textarea (#27758). git-svn-id: http://svn.redmine.org/redmine/trunk@17548 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/public/javascripts/application.js b/public/javascripts/application.js index dbe4a32b9..5221152fb 100644 --- a/public/javascripts/application.js +++ b/public/javascripts/application.js @@ -342,8 +342,8 @@ function toggleMultiSelect(el) { function showTab(name, url) { $('#tab-content-' + name).parent().find('.tab-content').hide(); - $('#tab-content-' + name).parent().find('div.tabs a').removeClass('selected'); $('#tab-content-' + name).show(); + $('#tab-' + name).closest('.tabs').find('a').removeClass('selected'); $('#tab-' + name).addClass('selected'); //replaces current URL with the "href" attribute of the current link //(only triggered if supported by browser)