2017-02-25 01:30:18 -06:00
|
|
|
/**
|
|
|
|
* Clipboardに値をコピー(TODO: 文字列以外も対応)
|
|
|
|
*/
|
2017-03-18 06:05:11 -05:00
|
|
|
export default val => {
|
2017-02-25 01:30:18 -06:00
|
|
|
const form = document.createElement('textarea');
|
|
|
|
form.textContent = val;
|
|
|
|
document.body.appendChild(form);
|
|
|
|
form.select();
|
|
|
|
const result = document.execCommand('copy');
|
|
|
|
document.body.removeChild(form);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
};
|