open bytes in new tab angular

Solutions on MaxInterview for open bytes in new tab angular by the best coders in the world

showing results for - "open bytes in new tab angular"
Lorenzo
04 Aug 2017
1Document.preview({id: $scope.order.id}, function(data){
2
3    // Open PDF Here
4    var file = new Blob([data], {type: 'application/pdf'});
5    var fileURL = URL.createObjectURL(file);
6    window.open(fileURL);
7
8});
9