Merge pull request #16967 from abpframework/auto-merge/rel-7-1/2033

Merge branch rel-7.2 with rel-7.1
pull/16968/head
maliming 2 years ago committed by GitHub
commit 7930905943
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,7 +7,8 @@
return;
}
var id = _this.data("id")
var id = _this.data("id");
var tabId = id.replace(/\./g, '-');
abp.ui.block({
elm: '#tab-content',
busy: true,
@ -19,8 +20,8 @@
processData: false
}).done(function (response) {
$('#tab-content').children('.tab-pane').removeClass('show').removeClass('active');
_this.attr('data-bs-target', '#' + $.escapeSelector(id));
$('#tab-content').append('<div id=' + $.escapeSelector(id) + ' class="tab-pane fade active show">' + response + '</div>');
_this.attr('data-bs-target', '#' + tabId);
$('#tab-content').append('<div id=' + tabId + ' class="tab-pane fade active show">' + response + '</div>');
})
});
}).first().click();

Loading…
Cancel
Save