Skip to content

Instantly share code, notes, and snippets.

@DmitryVarennikov
Created February 6, 2017 18:59
Show Gist options
  • Save DmitryVarennikov/aead887b4cafbb849fd616627bb10359 to your computer and use it in GitHub Desktop.
Save DmitryVarennikov/aead887b4cafbb849fd616627bb10359 to your computer and use it in GitHub Desktop.
javascript:(setInterval(function() {
console.log('Running check');
[].forEach.call(document.getElementById('vue-router').children, function(el) {
if (el.firstChild.innerHTML == 'Dmitry' && el.className != 'pending') {
alert('Coffee time!');
}
});
}, 5000))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment