Browse Source

"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
tags/4.1.0
Go MAEDA 4 years ago
parent
commit
0c547ffd8a
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      public/javascripts/application.js

+ 2
- 2
public/javascripts/application.js View File

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

Loading…
Cancel
Save