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
e3f9cd9d
Commit
e3f9cd9d
authored
Aug 02, 2016
by
Alice Wyan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle Redux store subscriptions on WidgetController destruction
parent
f223ceb3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
widget-controller.js
h/static/scripts/widget-controller.js
+3
-1
No files found.
h/static/scripts/widget-controller.js
View file @
e3f9cd9d
...
@@ -93,7 +93,7 @@ module.exports = function WidgetController(
...
@@ -93,7 +93,7 @@ module.exports = function WidgetController(
// only those threads, using placeholders above and below the visible threads
// only those threads, using placeholders above and below the visible threads
// to reserve space for threads which are not actually rendered.
// to reserve space for threads which are not actually rendered.
var
visibleThreads
=
new
VirtualThreadList
(
$scope
,
window
,
thread
());
var
visibleThreads
=
new
VirtualThreadList
(
$scope
,
window
,
thread
());
annotationUI
.
subscribe
(
function
()
{
var
unsubscribeAnnotationUI
=
annotationUI
.
subscribe
(
function
()
{
visibleThreads
.
setRootThread
(
thread
());
visibleThreads
.
setRootThread
(
thread
());
$scope
.
selectedTab
=
annotationUI
.
getState
().
selectedTab
;
$scope
.
selectedTab
=
annotationUI
.
getState
().
selectedTab
;
...
@@ -101,6 +101,8 @@ module.exports = function WidgetController(
...
@@ -101,6 +101,8 @@ module.exports = function WidgetController(
$scope
.
totalNotes
=
countNotes
(
annotationUI
.
getState
().
annotations
);
$scope
.
totalNotes
=
countNotes
(
annotationUI
.
getState
().
annotations
);
});
});
$scope
.
$on
(
'$destroy'
,
unsubscribeAnnotationUI
);
visibleThreads
.
on
(
'changed'
,
function
(
state
)
{
visibleThreads
.
on
(
'changed'
,
function
(
state
)
{
$scope
.
virtualThreadList
=
{
$scope
.
virtualThreadList
=
{
visibleThreads
:
state
.
visibleThreads
,
visibleThreads
:
state
.
visibleThreads
,
...
...
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