Skip to content

Commit

Permalink
Revert #408
Browse files Browse the repository at this point in the history
  • Loading branch information
eligrey committed Mar 22, 2018
1 parent a606064 commit e865e37
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "file-saver",
"main": "dist/FileSaver.js",
"version": "1.3.7",
"version": "1.3.8",
"homepage": "https://github.com/eligrey/FileSaver.js",
"authors": [
"Eli Grey <me@eligrey.com>"
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "file-saver",
"version": "1.3.7",
"version": "1.3.8",
"description": "An HTML5 saveAs() FileSaver implementation",
"main": "dist/FileSaver.js",
"module": "src/FileSaver.js",
Expand Down
7 changes: 4 additions & 3 deletions src/FileSaver.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* FileSaver.js
* A saveAs() FileSaver implementation.
* 1.3.7
* 2018-03-16 14:39:40
* 1.3.8
* 2018-03-22 14:03:47
*
* By Eli Grey, https://eligrey.com
* License: MIT
Expand Down Expand Up @@ -157,7 +157,8 @@ export var saveAs = saveAs || (function(view) {
};
}

save_link.target = "_blank";
// todo: detect chrome extensions & packaged apps
//save_link.target = "_blank";

FS_proto.abort = function(){};
FS_proto.readyState = FS_proto.INIT = 0;
Expand Down

0 comments on commit e865e37

Please sign in to comment.