Skip to content

Instantly share code, notes, and snippets.

@Altreus
Created May 22, 2014 12:03
Show Gist options
  • Save Altreus/1440051e09f3219967b1 to your computer and use it in GitHub Desktop.
Save Altreus/1440051e09f3219967b1 to your computer and use it in GitHub Desktop.
function delayedAddIcon(chart, flags) {
if ($('#topSubscribers .highcharts-container').length) {
addIcon(chart, flags);
}
else {
setTimeout(function() {
delayedAddIcon(chart, flags);
}, 100);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment