Skip to content

Commit 5fc1775

Browse files
author
Anatoliy Ostapenko
committed
Run build
1 parent 3ffdb2c commit 5fc1775

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

dist/FileAPI.html5.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! FileAPI 2.0.26 - BSD | git://github.com/mailru/FileAPI.git
1+
/*! FileAPI 2.0.27 - BSD | git://github.com/mailru/FileAPI.git
22
* FileAPI — a set of javascript tools for working with files. Multiupload, drag'n'drop and chunked file upload. Images: crop, resize and auto orientation by EXIF.
33
*/
44

@@ -287,7 +287,7 @@
287287
* FileAPI (core object)
288288
*/
289289
api = {
290-
version: '2.0.26',
290+
version: '2.0.27',
291291

292292
cors: false,
293293
html5: true,
@@ -2999,7 +2999,7 @@
29992999
url += (url.indexOf('?') < 0 ? "?" : "&") + data.params.join("&");
30003000
}
30013001

3002-
xhr.open('POST', url, true);
3002+
xhr.open(options.uploadMethod || 'POST', url, true);
30033003

30043004
if( api.withCredentials ){
30053005
xhr.withCredentials = "true";

dist/FileAPI.html5.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/FileAPI.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! FileAPI 2.0.26 - BSD | git://github.com/mailru/FileAPI.git
1+
/*! FileAPI 2.0.27 - BSD | git://github.com/mailru/FileAPI.git
22
* FileAPI — a set of javascript tools for working with files. Multiupload, drag'n'drop and chunked file upload. Images: crop, resize and auto orientation by EXIF.
33
*/
44

@@ -287,7 +287,7 @@
287287
* FileAPI (core object)
288288
*/
289289
api = {
290-
version: '2.0.26',
290+
version: '2.0.27',
291291

292292
cors: false,
293293
html5: true,
@@ -2999,7 +2999,7 @@
29992999
url += (url.indexOf('?') < 0 ? "?" : "&") + data.params.join("&");
30003000
}
30013001

3002-
xhr.open('POST', url, true);
3002+
xhr.open(options.uploadMethod || 'POST', url, true);
30033003

30043004
if( api.withCredentials ){
30053005
xhr.withCredentials = "true";

dist/FileAPI.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/FileAPI.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
* FileAPI (core object)
194194
*/
195195
api = {
196-
version: '2.0.26',
196+
version: '2.0.27',
197197

198198
cors: false,
199199
html5: true,

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"connect-busboy": "~0.0.2",
77
"eventemitter2": "~0.4.13",
88
"express": "~4.12.3",
9+
"flex-sdk": "^4.6.0-0",
910
"grunt": "^0.4.5",
1011
"grunt-contrib-compress": "~0.9.1",
1112
"grunt-contrib-concat": "~0.4.0",

0 commit comments

Comments
 (0)