Skip to content

Instantly share code, notes, and snippets.

@seven-cd
Created June 5, 2017 12:05
Show Gist options
  • Save seven-cd/12b5548f042c090a5d938ebc4de90fdf to your computer and use it in GitHub Desktop.
Save seven-cd/12b5548f042c090a5d938ebc4de90fdf to your computer and use it in GitHub Desktop.
function preload(source) {
return $q(function(resolve, reject) {
var img = angular.element('<img>');
img.on('load', resolve);
img.on('error', reject);
img.attr('src', source);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment