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
db578451
Commit
db578451
authored
Jun 07, 2017
by
Juan Corona
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small clean up to stay consistent with code style
parent
a57ff80a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
9 deletions
+8
-9
frame-sync.js
src/sidebar/frame-sync.js
+5
-8
frames.js
src/sidebar/reducers/frames.js
+3
-1
No files found.
src/sidebar/frame-sync.js
View file @
db578451
...
...
@@ -187,15 +187,12 @@ function FrameSync($rootScope, $window, Discovery, annotationUI, bridge) {
function
destroyFrame
(
uri
)
{
var
frames
=
annotationUI
.
frames
();
var
frameToDestroy
;
for
(
var
i
=
0
;
i
<
frames
.
length
;
i
++
)
{
var
frame
=
frames
[
i
];
if
(
frame
.
uri
===
uri
)
{
frameToDestroy
=
frame
;
break
;
}
var
frameToDestroy
=
frames
.
find
(
function
(
frame
)
{
return
frame
.
uri
===
uri
;
});
if
(
frameToDestroy
)
{
annotationUI
.
destroyFrame
(
frameToDestroy
);
}
if
(
frameToDestroy
)
annotationUI
.
destroyFrame
(
frameToDestroy
);
}
/**
...
...
src/sidebar/reducers/frames.js
View file @
db578451
...
...
@@ -19,7 +19,9 @@ var update = {
DESTROY_FRAME
:
function
(
state
,
action
)
{
var
index
=
state
.
frames
.
indexOf
(
action
.
frame
);
if
(
index
>=
0
)
state
.
frames
.
splice
(
index
,
1
);
if
(
index
>=
0
)
{
state
.
frames
.
splice
(
index
,
1
);
}
return
{
frames
:
state
.
frames
};
},
...
...
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