Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save winsandymyint/e33973a8bc6492862d8af07c7235c071 to your computer and use it in GitHub Desktop.
Save winsandymyint/e33973a8bc6492862d8af07c7235c071 to your computer and use it in GitHub Desktop.
var reader = new FileReader();
reader.onload = function(evt) {
$scope.$apply(function($scope) {
$scope.preview = evt.target.result;
});
};
reader.readAsDataURL(file);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment