Skip to content

Instantly share code, notes, and snippets.

@agscala
Created July 22, 2015 17:21
Show Gist options
  • Save agscala/b1302b2250426b9955ec to your computer and use it in GitHub Desktop.
Save agscala/b1302b2250426b9955ec to your computer and use it in GitHub Desktop.
function process_image(image_data) {
}
function get_imgur_image(params, callback) {
$.get("imgur url", params, function(data) {
if(data === not what you're looking for) {
get_imgur_image(updated_params, callback);
}
else {
callback(data)
}
});
}
get_imgur_image({...params...}, process_Image);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment