main
 1import Ember from 'ember';
 2import Scrollable from 'cakery/mixins/scrollable';
 3
 4export default Ember.View.extend(Scrollable, {
 5  didInsertElement: function(){
 6    var view = this;
 7    Ember.$(window).bind('scroll', function(){
 8      view.didScroll();
 9    });
10  },
11
12  willDestroyElement: function(){
13    Ember.$(window).unbind('scroll');
14  },
15});