Rename `results1` to `parsedAnnotations`

parent 12391028
...@@ -89,14 +89,13 @@ AnnotationSync.prototype._channelListeners = { ...@@ -89,14 +89,13 @@ AnnotationSync.prototype._channelListeners = {
annotations = (function() { annotations = (function() {
var i; var i;
var results1; var parsedAnnotations = [];
results1 = [];
for (i = 0; i < bodies.length; i++) { for (i = 0; i < bodies.length; i++) {
a = bodies[i]; a = bodies[i];
results1.push(this._parse(a)); parsedAnnotations.push(this._parse(a));
} }
return results1; return parsedAnnotations;
}).call(this); }).call(this);
this._emit('annotationsLoaded', annotations); this._emit('annotationsLoaded', annotations);
return cb(null, annotations); return cb(null, annotations);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment