This website works better with JavaScript.
Home
Explore
Help
Sign In
nekobus
/
mastodon_neko
forked from
closed-social/mastodon
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Fix scroll to top not registering because of wrong debounce usage
master
Eugen
7 years ago
committed by
GitHub
parent
e8ea9669c9
commit
f338cc6c94
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
app/assets/javascripts/components/features/ui/containers/status_list_container.jsx
+ 1
- 1
app/assets/javascripts/components/features/ui/containers/status_list_container.jsx
View File
@ -47,7 +47,7 @@ const mapDispatchToProps = (dispatch, { type, id }) => ({
dispatch
(
expandTimeline
(
type
,
id
)
)
;
}
,
@
debounce
(
300
,
true
)
@
debounce
(
300
)
onScrollToTop
(
)
{
dispatch
(
scrollTopTimeline
(
type
,
true
)
)
;
}
,
Write
Preview
Loading…
Cancel
Save