Update FileSaver.js.

* update JSHint config options to match the current coding style
* use the important comment for the license header
This commit is contained in:
XhmikosR
2014-02-09 13:34:41 +02:00
parent 054378f822
commit 554f6cc11b
+3 -4
View File
@@ -1,4 +1,4 @@
/* FileSaver.js
/*! FileSaver.js
* A saveAs() FileSaver implementation.
* 2014-01-24
*
@@ -8,8 +8,7 @@
*/
/*global self */
/*jslint bitwise: true, regexp: true, confusion: true, es5: true, vars: true, white: true,
plusplus: true */
/*jslint bitwise: true, indent: 4, laxbreak: true, laxcomma: true, smarttabs: true, plusplus: true */
/*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */
@@ -42,7 +41,7 @@ var saveAs = saveAs
}
, webkit_req_fs = view.webkitRequestFileSystem
, req_fs = view.requestFileSystem || webkit_req_fs || view.mozRequestFileSystem
, throw_outside = function (ex) {
, throw_outside = function(ex) {
(view.setImmediate || view.setTimeout)(function() {
throw ex;
}, 0);