mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
b2bbaf153d
refs https://github.com/TryGhost/Team/issues/559 - moved the modal component class, template, and sub-components into a `components/modals/` directory to keep the top-level dir cleaner - migrated component class to full glimmer syntax
13 lines
438 B
JavaScript
13 lines
438 B
JavaScript
import Component from '@glimmer/component';
|
|
import copyTextToClipboard from 'ghost-admin/utils/copy-text-to-clipboard';
|
|
import {task} from 'ember-concurrency-decorators';
|
|
import {timeout} from 'ember-concurrency';
|
|
|
|
export default class ModalPostPreviewBrowserComponent extends Component {
|
|
@task
|
|
*copyPreviewUrl() {
|
|
copyTextToClipboard(this.args.post.previewUrl);
|
|
yield timeout(this.isTesting ? 50 : 3000);
|
|
}
|
|
}
|