1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-05 08:55:56 +02:00

[Client] Implement copy file url to clipboard

This commit is contained in:
syuilo
2017-02-25 16:30:18 +09:00
parent dd9ff67628
commit 0c33053fcf
2 changed files with 22 additions and 1 deletions

View File

@@ -35,10 +35,13 @@
</ul>
</mk-contextmenu>
<script>
const copyToClipboard = require('../../../common/scripts/copy-to-clipboard');
this.mixin('api');
this.mixin('i');
this.mixin('update-avatar');
this.mixin('update-banner');
this.mixin('dialog');
this.mixin('input-dialog');
this.mixin('NotImplementedException');
@@ -68,7 +71,12 @@
};
this.copyUrl = () => {
this.NotImplementedException();
copyToClipboard(this.file.url);
this.refs.ctx.close();
this.dialog('<i class="fa fa-check"></i>コピー完了',
'ファイルのURLをクリップボードにコピーしました', [{
text: 'わー'
}]);
};
this.download = () => {