mirror of
https://github.com/redmine/redmine.git
synced 2025-11-12 08:16:03 +01:00
Fix for multiple tabs on the same page (#20271).
Patch by Felix Gliesche. git-svn-id: http://svn.redmine.org/redmine/trunk@14624 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -352,11 +352,12 @@ function moveTabLeft(el) {
|
|||||||
|
|
||||||
function displayTabsButtons() {
|
function displayTabsButtons() {
|
||||||
var lis;
|
var lis;
|
||||||
var tabsWidth = 0;
|
var tabsWidth;
|
||||||
var el;
|
var el;
|
||||||
$('div.tabs').each(function() {
|
$('div.tabs').each(function() {
|
||||||
el = $(this);
|
el = $(this);
|
||||||
lis = el.find('ul').children();
|
lis = el.find('ul').children();
|
||||||
|
tabsWidth = 0;
|
||||||
lis.each(function(){
|
lis.each(function(){
|
||||||
if ($(this).is(':visible')) {
|
if ($(this).is(':visible')) {
|
||||||
tabsWidth += $(this).width() + 6;
|
tabsWidth += $(this).width() + 6;
|
||||||
|
|||||||
Reference in New Issue
Block a user