mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
3826f39f9c
refs https://github.com/TryGhost/Team/issues/466
refs a657e4f092
- added paywall card component
- swapped hr for paywall for the paywall card shown in card menus
11 lines
191 B
JavaScript
11 lines
191 B
JavaScript
import Component from '@ember/component';
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
this.registerComponent(this);
|
|
}
|
|
});
|