Created
June 24, 2019 21:25
-
-
Save romulo1984/d4b6c42e4be703afb45ed39eeba2e789 to your computer and use it in GitHub Desktop.
Widget da tabela do Brasileirão
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div style="margin: 0 -15px;"> | |
<script> | |
function resizeIFrameToFitContent(el) { | |
iframe = document.querySelector(el); | |
iframe.height = iframe.contentWindow.document.body.scrollHeight; | |
setTimeout(function() { | |
resizeIFrameToFitContent(el) | |
}, 1000); | |
} | |
</script> | |
<iframe allowfullscreen="" class="tabela-brasileirao-class" frameborder="0" id="tabela-classificacao" onload="resizeIFrameToFitContent('.tabela-brasileirao-class')" src="/theme/tol/includes/tabela-brasileirao/index.html" width="100%" height="1137"></iframe> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment