Skip to content

Commit

Permalink
jslint
Browse files Browse the repository at this point in the history
  • Loading branch information
ali asaria committed Oct 12, 2014
1 parent 116ab01 commit 6500143
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/data/redis.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var db = function(callback) {
console.log("Redis error: " + err);
});

}
};

db.prototype = {
clearRoom: function(room, callback) {
Expand Down Expand Up @@ -102,7 +102,7 @@ db.prototype = {

var cards = [];

for (i in res) {
for (var i in res) {
cards.push( JSON.parse(res[i]) );
}
//console.dir(cards);
Expand Down

0 comments on commit 6500143

Please sign in to comment.