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
90518f1c
Unverified
Commit
90518f1c
authored
Mar 31, 2017
by
Sean Hammond
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename `results1` to `formattedAnnotations`
parent
9a1d49f1
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 @
90518f1c
...
...
@@ -50,13 +50,12 @@ AnnotationSync.prototype.cache = null;
AnnotationSync
.
prototype
.
sync
=
function
(
annotations
)
{
annotations
=
(
function
()
{
var
i
;
var
results1
;
var
formattedAnnotations
=
[]
;
results1
=
[];
for
(
i
=
0
;
i
<
annotations
.
length
;
i
++
)
{
results1
.
push
(
this
.
_format
(
annotations
[
i
]));
formattedAnnotations
.
push
(
this
.
_format
(
annotations
[
i
]));
}
return
results1
;
return
formattedAnnotations
;
}).
call
(
this
);
this
.
bridge
.
call
(
'sync'
,
annotations
,
(
function
(
_this
)
{
return
function
(
err
,
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