Added IE10 support
It's not possible to add abort support for IE though.
This commit is contained in:
+4
-2
@@ -1,6 +1,6 @@
|
|||||||
/* FileSaver.js
|
/* FileSaver.js
|
||||||
* A saveAs() FileSaver implementation.
|
* A saveAs() FileSaver implementation.
|
||||||
* 2011-08-02
|
* 2012-12-11
|
||||||
*
|
*
|
||||||
* By Eli Grey, http://eligrey.com
|
* By Eli Grey, http://eligrey.com
|
||||||
* License: X11/MIT
|
* License: X11/MIT
|
||||||
@@ -13,7 +13,9 @@
|
|||||||
|
|
||||||
/*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */
|
/*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */
|
||||||
|
|
||||||
var saveAs = saveAs || (function(view) {
|
var saveAs = saveAs
|
||||||
|
|| (navigator.msSaveOrOpenBlob && navigator.msSaveOrOpenBlob.bind(navigator))
|
||||||
|
|| (function(view) {
|
||||||
"use strict";
|
"use strict";
|
||||||
var
|
var
|
||||||
doc = view.document
|
doc = view.document
|
||||||
|
|||||||
Reference in New Issue
Block a user