Skip to content

Instantly share code, notes, and snippets.

@ingydotnet
Created December 21, 2010 10:48
Show Gist options
  • Save ingydotnet/749782 to your computer and use it in GitHub Desktop.
Save ingydotnet/749782 to your computer and use it in GitHub Desktop.
function fetchTiddler(key) {
var tiddler;
callFetcher(key, function(t) { tiddler = t });
while (not tiddler) {
setTimeout(function() {}, 100);
}
return tiddler;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment