mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
9 lines
225 B
JavaScript
9 lines
225 B
JavaScript
|
import Component from '@glimmer/component';
|
||
|
|
||
|
export default class PublishModalComponent extends Component {
|
||
|
static modalOptions = {
|
||
|
className: 'fullscreen-modal-total-overlay',
|
||
|
omitBackdrop: true
|
||
|
};
|
||
|
}
|