Skip to content

Commit 17116f9

Browse files
committed
v2.0.14: Fixed Flash XSS, part III (mailru#342)
1 parent 513d44e commit 17116f9

File tree

6 files changed

+13
-15
lines changed

6 files changed

+13
-15
lines changed

dist/FileAPI.html5.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! FileAPI 2.0.11 - BSD | git://github.com/mailru/FileAPI.git
1+
/*! FileAPI 2.0.14 - 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

@@ -283,7 +283,7 @@
283283
* FileAPI (core object)
284284
*/
285285
api = {
286-
version: '2.0.11',
286+
version: '2.0.14',
287287

288288
cors: false,
289289
html5: true,

dist/FileAPI.html5.min.js

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

dist/FileAPI.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! FileAPI 2.0.11 - BSD | git://github.com/mailru/FileAPI.git
1+
/*! FileAPI 2.0.14 - 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

@@ -283,7 +283,7 @@
283283
* FileAPI (core object)
284284
*/
285285
api = {
286-
version: '2.0.11',
286+
version: '2.0.14',
287287

288288
cors: false,
289289
html5: true,
@@ -3504,7 +3504,7 @@
35043504
, width: 5
35053505
, height: 5
35063506
, position: 'absolute'
3507-
, zIndex: 1e6+'' // set max zIndex
3507+
, zIndex: 2147483647+'' // set max zIndex
35083508
});
35093509

35103510
child.parentNode.insertBefore(dummy, child);
@@ -3615,7 +3615,7 @@
36153615
, left: 0
36163616
, width: target.offsetWidth
36173617
, height: target.offsetHeight
3618-
, zIndex: 1e6+'' // set max zIndex
3618+
, zIndex: 2147483647+'' // set max zIndex
36193619
, position: 'absolute'
36203620
});
36213621

dist/FileAPI.min.js

Lines changed: 3 additions & 4 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
@@ -189,7 +189,7 @@
189189
* FileAPI (core object)
190190
*/
191191
api = {
192-
version: '2.0.11',
192+
version: '2.0.14',
193193

194194
cors: false,
195195
html5: true,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fileapi",
33
"exportName": "FileAPI",
4-
"version": "2.0.13",
4+
"version": "2.0.14",
55
"devDependencies": {
66
"connect-busboy": "~0.0.2",
77
"eventemitter2": "~0.4.13",

0 commit comments

Comments
 (0)