mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 09:52:09 +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
8 lines
179 B
JavaScript
8 lines
179 B
JavaScript
import Ember from 'ember';
|
|
import InfiniteScrollMixin from 'ghost/mixins/infinite-scroll';
|
|
|
|
const {Component} = Ember;
|
|
|
|
export default Component.extend(InfiniteScrollMixin, {
|
|
});
|