mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
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);
|
||
|
}
|
||
|
}
|