Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
umcsdon authored and timwindsor committed Jul 15, 2015
1 parent 66e572e commit cce09e3
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions www/blackberry10/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,26 +99,26 @@ var stopRead = function stopRead (succ, fail) {
gotCode = true;
succ(data);
stopRead(
function(result){
// console.log("stopRead success!");
},
function(err){
console.log("stopRead Error : " + err.error + " description : "+ err.description);
}
);
function(result) {
// console.log("stopRead success!");
},
function(err) {
console.log("stopRead Error : " + err.error + " description : "+ err.description);
}
);
}
};

var failure = function (data) {
fail(data);
stopRead(
function(result){
// console.log("stopRead success!");
},
function(err){
console.log("stopReadError : " + err.error + " description : " + err.description);
}
);
function(result) {
// console.log("stopRead success!");
},
function(err) {
console.log("stopReadError : " + err.error + " description : " + err.description);
}
);
};

startRead(success, failure);
Expand Down

0 comments on commit cce09e3

Please sign in to comment.