2015-02-12 23:22:32 -05:00
|
|
|
import Ember from 'ember';
|
2014-06-07 14:07:25 -05:00
|
|
|
import setScrollClassName from 'ghost/utils/set-scroll-classname';
|
|
|
|
|
|
|
|
var PostContentView = Ember.View.extend({
|
|
|
|
classNames: ['content-preview-content'],
|
|
|
|
|
|
|
|
didInsertElement: function () {
|
|
|
|
var el = this.$();
|
|
|
|
el.on('scroll', Ember.run.bind(el, setScrollClassName, {
|
|
|
|
target: el.closest('.content-preview'),
|
|
|
|
offset: 10
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
|
2014-08-19 05:29:49 -05:00
|
|
|
contentObserver: function () {
|
2015-05-05 14:38:57 -05:00
|
|
|
var el = this.$();
|
|
|
|
|
|
|
|
if (el) {
|
|
|
|
el.closest('.content-preview').scrollTop(0);
|
|
|
|
}
|
2014-08-19 05:29:49 -05:00
|
|
|
}.observes('controller.content'),
|
|
|
|
|
2014-06-07 14:07:25 -05:00
|
|
|
willDestroyElement: function () {
|
|
|
|
var el = this.$();
|
|
|
|
el.off('scroll');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default PostContentView;
|