mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
f76d7e9cd2
no issue - cleanup now the old publish flow is no more
12 lines
393 B
JavaScript
12 lines
393 B
JavaScript
import Component from '@glimmer/component';
|
|
import copyTextToClipboard from 'ghost-admin/utils/copy-text-to-clipboard';
|
|
import {task, timeout} from 'ember-concurrency';
|
|
|
|
export default class ModalPostPreviewBrowserComponent extends Component {
|
|
@task
|
|
*copyPreviewUrl() {
|
|
copyTextToClipboard(this.args.post.previewUrl);
|
|
yield timeout(this.isTesting ? 50 : 3000);
|
|
}
|
|
}
|