Skip to content

Commit 129b396

Browse files
committed
+ v1.2.7
1 parent e5ec35a commit 129b396

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

FileAPI.min.js

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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,7 @@ All the other codes - fatal error, user's involvement is recommend.
698698
* + iOS fix (https://github.com/blueimp/JavaScript-Load-Image)
699699
* [#121](https://github.com/mailru/FileAPI/issues/121): + FileAPI.`postNameConcat:Function(name, idx)`
700700
* [#116](https://github.com/mailru/FileAPI/issues/116): + `cache:false` option for FileAPI.upload
701+
* fix `isArray` for Safari 5
701702
702703
703704
### 1.2.6

lib/FileAPI.core.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
preventDefault = 'preventDefault',
5757

5858
api = {
59-
version: '1.2.6',
59+
version: '1.2.7',
6060

6161
cors: false,
6262
html5: true,
@@ -1401,7 +1401,7 @@
14011401

14021402

14031403
function isArray(ar) {
1404-
return(typeof ar == 'object') && ar && ('length' in ar);
1404+
returnar && ('length' in ar);
14051405
}
14061406

14071407

0 commit comments

Comments
 (0)