Skip to content

Commit

Permalink
Release v2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AidasK committed Jan 20, 2016
1 parent 2e078c3 commit ac2cc10
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-flow",
"version": "2.7.0",
"version": "2.7.1",
"ignore": [
"**/.*",
"test",
Expand Down
5 changes: 3 additions & 2 deletions dist/ng-flow-standalone.js
Original file line number Diff line number Diff line change
Expand Up @@ -1566,7 +1566,8 @@
}
var key;
// Is Array?
if (Array.isArray(obj)) {
// Array.isArray won't work, not only arrays can be iterated by index https://github.com/flowjs/ng-flow/issues/236#
if (typeof(obj.length) !== 'undefined') {
for (key = 0; key < obj.length; key++) {
if (callback.call(context, obj[key], key) === false) {
return ;
Expand Down Expand Up @@ -1598,7 +1599,7 @@
* Library version
* @type {string}
*/
Flow.version = '2.10.0';
Flow.version = '2.10.1';

if ( typeof module === "object" && module && typeof module.exports === "object" ) {
// Expose Flow as module.exports in loaders that implement the Node
Expand Down
4 changes: 2 additions & 2 deletions dist/ng-flow-standalone.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ng-flow.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-flow",
"version": "2.7.0",
"version": "2.7.1",
"description": "Flow.js html5 file upload extension on angular.js framework",
"scripts": {
"test": "grunt test"
Expand Down

0 comments on commit ac2cc10

Please sign in to comment.