[build/js]: Fix height problem on default tabs for the IFrame plugin. (#3876)

This commit is contained in:
Diego Smania
2021-09-17 16:26:49 -03:00
committed by GitHub
parent 3bff93f6c9
commit 3267f781b9
3 changed files with 9 additions and 5 deletions

View File

@@ -43,7 +43,9 @@ To get the iframe 100% working you need the following content-wrapper markup:
<a class="nav-link bg-light" href="#" data-widget="iframe-fullscreen"><i class="fas fa-expand"></i></a>
</div>
<div class="tab-content">
<div class="tab-pane fade active show" id="panel-index" role="tabpanel" aria-labelledby="tab-index"><iframe src="./index.html" style="height: 671px;"></iframe></div>
<div class="tab-pane fade active show" id="panel-index" role="tabpanel" aria-labelledby="tab-index">
<iframe src="./index.html"></iframe>
</div>
<div class="tab-empty">
<h2 class="display-4">No tab selected!</h2>
</div>