]> source.dussan.org Git - redmine.git/commitdiff
Tab buttons appear on pages that have no tabs (#23751).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 1 Oct 2016 08:55:56 +0000 (08:55 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 1 Oct 2016 08:55:56 +0000 (08:55 +0000)
Patch by Edouard Cunibil.

git-svn-id: http://svn.redmine.org/redmine/trunk@15853 e93f8b46-1217-0410-a6f0-8f06a7374b81

public/javascripts/application.js

index 64d3e8ea9fd13b7b2703212f8bbc022750d5fcf7..3d1ad43cd28cfe0bfa394bae6d46e6efe01a8f06 100644 (file)
@@ -385,7 +385,7 @@ function displayTabsButtons() {
       }
     });
     var bw = $(el).parents('div.tabs-buttons').outerWidth(true);
-    if ((tabsWidth < el.width() - bw) && (lis.first().is(':visible'))) {
+    if ((tabsWidth < el.width() - bw) && (lis.length === 0 || lis.first().is(':visible'))) {
       el.find('div.tabs-buttons').hide();
     } else {
       el.find('div.tabs-buttons').show().children('button.tab-left').toggleClass('disabled', numHidden == 0);