Browse Source

Fix multiple close icons

Abdullah Almsaeed 6 years ago
parent
commit
e418fe07ea
1 changed files with 3 additions and 0 deletions
  1. 3 0
      tripal_ds/theme/js/tripal_ds.js

+ 3 - 0
tripal_ds/theme/js/tripal_ds.js

@@ -3,6 +3,9 @@
     attach: function (context, settings){
       // Add a close button for each pane except for the te_base
       $('div.tripal_pane').each(function (i) {
+        if($(this).find('.tripal_pane-fieldset-buttons').length > 0) {
+          return;
+        }
         $(this).prepend(
           '<div class="tripal_pane-fieldset-buttons">' +
             '<div id="tripal-pane-close-button" class="tripal-pane-button">' +