Skip to content

Instantly share code, notes, and snippets.

@progrium
Created September 19, 2015 17:39
Show Gist options
  • Save progrium/1180df9b3f5a814f510f to your computer and use it in GitHub Desktop.
Save progrium/1180df9b3f5a814f510f to your computer and use it in GitHub Desktop.
<script>
var pushedTime
setInterval(function() {
$.getJSON("http://api.github.com/repos/taramk/taramk.github.io", null, function(data) {
if (pushedTime != null && pushedTime != data.pushed_at) {
window.location.href = window.location.href
}
pushedTime = data.pushed_at
})
}, 3000)
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment