Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
9798e681
Unverified
Commit
9798e681
authored
Mar 31, 2017
by
Sean Hammond
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename `results1` to `parsedAnnotations`
parent
12391028
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
annotation-sync.js
src/annotator/annotation-sync.js
+3
-4
No files found.
src/annotator/annotation-sync.js
View file @
9798e681
...
...
@@ -89,14 +89,13 @@ AnnotationSync.prototype._channelListeners = {
annotations
=
(
function
()
{
var
i
;
var
results1
;
var
parsedAnnotations
=
[]
;
results1
=
[];
for
(
i
=
0
;
i
<
bodies
.
length
;
i
++
)
{
a
=
bodies
[
i
];
results1
.
push
(
this
.
_parse
(
a
));
parsedAnnotations
.
push
(
this
.
_parse
(
a
));
}
return
results1
;
return
parsedAnnotations
;
}).
call
(
this
);
this
.
_emit
(
'annotationsLoaded'
,
annotations
);
return
cb
(
null
,
annotations
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment