Skip to content

Instantly share code, notes, and snippets.

@gustafnk
Last active September 5, 2016 06:24
Show Gist options
  • Save gustafnk/e42be44d70ae9532b1987c1bcbe95da5 to your computer and use it in GitHub Desktop.
Save gustafnk/e42be44d70ae9532b1987c1bcbe95da5 to your computer and use it in GitHub Desktop.
Avoid flickering of hincludes
<!-- Put this code before the first hinclude or in the <head> element -->
<script>
<!-- https://gist.github.com/egeorjon/6755681 -->
document.documentElement.className = document.documentElement.className.replace( /(?:^|\s)no-script(?!\S)/g , '' )
</script>
<style>
hinclude:not(.included) {
visibility: hidden;
}
.no-script hinclude, hinclude.included {
visibility: visible;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment