Files
atom/src/app/scroll-view.coffee
Kevin Sawicki 5bf951d96f Create ScrollView super class
Binds support for page up, page down, move to top,
and move to bottom in the initialize method.
2012-10-12 09:21:35 -07:00

9 lines
269 B
CoffeeScript

{View} = require 'space-pen'
module.exports =
class ScrollView extends View
initialize: ->
@on 'core:page-up', => @pageUp()
@on 'core:page-down', => @pageDown()
@on 'core:move-to-top', => @scrollToTop()
@on 'core:move-to-bottom', => @scrollToBottom()