Skip to content

Commit

Permalink
Merge pull request #387 from arasabbasi/patch-1
Browse files Browse the repository at this point in the history
Fix RollUp-Error because of This is Undefined Rewrite
  • Loading branch information
eligrey authored Jan 12, 2018
2 parents c3e4a45 + fe42ec4 commit 74f0898
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions FileSaver.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* FileSaver.js
* A saveAs() FileSaver implementation.
* 1.3.2
* 2016-06-16 18:25:19
* 1.3.3
* 2018-01-12 13:14:0
*
* By Eli Grey, http://eligrey.com
* License: MIT
Expand Down Expand Up @@ -173,7 +173,9 @@ var saveAs = saveAs || (function(view) {
}(
typeof self !== "undefined" && self
|| typeof window !== "undefined" && window
|| typeof global !== "undefined" && global
|| this.content
|| this
));
// `self` is undefined in Firefox for Android content script context
// while `this` is nsIContentFrameMessageManager
Expand Down

0 comments on commit 74f0898

Please sign in to comment.