Merge pull request #12570 from XhmikosR/libs

Update docs libs
This commit is contained in:
Mark Otto 2014-02-04 01:23:16 -08:00
commit 952afba70d
4 changed files with 2062 additions and 1260 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
/* FileSaver.js
* A saveAs() FileSaver implementation.
* 2013-12-27
* 2014-01-24
*
* By Eli Grey, http://eligrey.com
* License: X11/MIT
@ -14,9 +14,15 @@
/*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */
var saveAs = saveAs
|| (typeof navigator !== "undefined" && navigator.msSaveOrOpenBlob && navigator.msSaveOrOpenBlob.bind(navigator))
// IE 10+ (native saveAs)
|| (navigator.msSaveOrOpenBlob && navigator.msSaveOrOpenBlob.bind(navigator))
// Everyone else
|| (function(view) {
"use strict";
// IE <10 is explicitly unsupported
if (/MSIE [1-9]\./.test(navigator.userAgent)) {
return;
}
var
doc = view.document
// only get URL when necessary in case BlobBuilder.js hasn't overridden it yet

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long