Skip to content

Instantly share code, notes, and snippets.

@romulo1984
Created June 24, 2019 21:25
Show Gist options
  • Save romulo1984/d4b6c42e4be703afb45ed39eeba2e789 to your computer and use it in GitHub Desktop.
Save romulo1984/d4b6c42e4be703afb45ed39eeba2e789 to your computer and use it in GitHub Desktop.
Widget da tabela do Brasileirão
<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