1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

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
This commit is contained in:
Jean-Philippe Lang 2018-09-30 16:33:46 +00:00
parent 3f8ee753df
commit f7a8a47570

View File

@ -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)