Add CocoView.scrollToTop

This commit is contained in:
Scott Erickson 2016-03-15 15:34:29 -07:00
parent e6593dea8d
commit 2a399e71fa

View file

@ -444,6 +444,9 @@ module.exports = class CocoView extends Backbone.View
scrollToLink: (link, speed=300) ->
scrollTo = $(link).offset().top
$('html, body').animate({ scrollTop: scrollTo }, speed)
scrollToTop: (speed=300) ->
$('html, body').animate({ scrollTop: 0 }, speed)
toggleFullscreen: (e) ->
# https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Using_full_screen_mode?redirectlocale=en-US&redirectslug=Web/Guide/DOM/Using_full_screen_mode