mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 13:55:55 +00:00
a6996b6ea5
* ui: Add with-copyable modifier * Use with-copyable modifier for our own CopyButton * Move copy-button styling and remove most of `copy-btn`
10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
import Service from '@ember/service';
|
|
|
|
import Clipboard from 'clipboard';
|
|
|
|
export default class OsService extends Service {
|
|
execute() {
|
|
return new Clipboard(...arguments);
|
|
}
|
|
}
|