Skip to content

Commit

Permalink
fixes #7 - some lint
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierlacot committed Jun 21, 2012
1 parent 62c1498 commit 16d052d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions joli.js
Expand Up @@ -5,7 +5,7 @@ var joliCreator = function() {

switch (joli.getType(collection)) {
case "array":
for ( i = 0, l = collection.length; i < l; i++) {
for (i = 0, l = collection.length; i < l; i++) {
iterator.call(bind, collection[i], i);
}
break;
Expand Down Expand Up @@ -767,7 +767,7 @@ var joliCreator = function() {
},
save: function() {
var data = {
data: this._data,
data: this._data
};

if (this.isChanged()) {
Expand Down Expand Up @@ -831,7 +831,7 @@ var joliCreator = function() {

joli.connection.execute('COMMIT;');
this.data.commited = true;
},
}
};

return joli;
Expand Down Expand Up @@ -864,5 +864,5 @@ if (typeof exports === 'object' && exports) {
}

return joli;
}
};
}

0 comments on commit 16d052d

Please sign in to comment.