hide tabContent during tab init to prevent flickering

This commit is contained in:
zadam 2019-08-17 08:49:39 +02:00
parent d1d8e54d20
commit 48e0e797da

View File

@ -47,6 +47,7 @@ class TabContext {
this.$tabContent = $(".note-tab-content-template").clone();
this.$tabContent.removeClass('note-tab-content-template');
this.$tabContent.attr('data-tab-id', this.tabId);
this.$tabContent.hide();
$tabContentsContainer.append(this.$tabContent);