Skip to content

Commit ac2cc10

Browse files
committed
Release v2.7.1
1 parent 2e078c3 commit ac2cc10

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-flow",
3-
"version": "2.7.0",
3+
"version": "2.7.1",
44
"ignore": [
55
"**/.*",
66
"test",

dist/ng-flow-standalone.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1566,7 +1566,8 @@
15661566
}
15671567
var key;
15681568
// Is Array?
1569-
if (Array.isArray(obj)) {
1569+
// Array.isArray won't work, not only arrays can be iterated by index https://github.com/flowjs/ng-flow/issues/236#
1570+
if (typeof(obj.length) !== 'undefined') {
15701571
for (key = 0; key < obj.length; key++) {
15711572
if (callback.call(context, obj[key], key) === false) {
15721573
return ;
@@ -1598,7 +1599,7 @@
15981599
* Library version
15991600
* @type {string}
16001601
*/
1601-
Flow.version = '2.10.0';
1602+
Flow.version = '2.10.1';
16021603

16031604
if ( typeof module === "object" && module && typeof module.exports === "object" ) {
16041605
// Expose Flow as module.exports in loaders that implement the Node

dist/ng-flow-standalone.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/ng-flow.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng-flow",
3-
"version": "2.7.0",
3+
"version": "2.7.1",
44
"description": "Flow.js html5 file upload extension on angular.js framework",
55
"scripts": {
66
"test": "grunt test"

0 commit comments

Comments
 (0)