mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
117ab27222
no issue - removes `setScrollClassName` mixin that was previously used to add a `.scrolling` class to scrollable elements that showed a shadow at the top of boxes when not scrolled to the top
23 lines
541 B
JavaScript
23 lines
541 B
JavaScript
import Ember from 'ember';
|
|
|
|
const {Component} = Ember;
|
|
|
|
export default Component.extend({
|
|
classNames: ['content-preview-content'],
|
|
|
|
content: null,
|
|
|
|
didReceiveAttrs(options) {
|
|
this._super(...arguments);
|
|
|
|
// adjust when didReceiveAttrs gets both newAttrs and oldAttrs
|
|
if (options.newAttrs.content && this.get('content') !== options.newAttrs.content.value) {
|
|
let el = this.$();
|
|
|
|
if (el) {
|
|
el.closest('.content-preview').scrollTop(0);
|
|
}
|
|
}
|
|
}
|
|
});
|