diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2016-08-09 16:18:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-09 16:18:15 +0200 |
commit | edeb41ccaff186b116852df4caf8df144db682c8 (patch) | |
tree | 5023c146e2eff9f546dffe5dd29f9256a5360bb5 /apps/federatedfilesharing/js/settings-personal.js | |
parent | 352ec077a216b873e75e921804c6cc6968a42056 (diff) | |
parent | 6f37a65b774283a10db2cb7f30179c49f252ecbd (diff) | |
download | nextcloud-server-edeb41ccaff186b116852df4caf8df144db682c8.tar.gz nextcloud-server-edeb41ccaff186b116852df4caf8df144db682c8.zip |
Merge pull request #780 from nextcloud/copy_fed_cloud_id
Add clipboard action to Personal Settings Fed Cloud Id
Diffstat (limited to 'apps/federatedfilesharing/js/settings-personal.js')
-rw-r--r-- | apps/federatedfilesharing/js/settings-personal.js | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/apps/federatedfilesharing/js/settings-personal.js b/apps/federatedfilesharing/js/settings-personal.js index 031a3c9617a..f89022dc8a0 100644 --- a/apps/federatedfilesharing/js/settings-personal.js +++ b/apps/federatedfilesharing/js/settings-personal.js @@ -20,4 +20,35 @@ $(document).ready(function() { } }); + // Clipboard! + var clipboard = new Clipboard('.clipboardButton'); + clipboard.on('success', function(e) { + $input = $(e.trigger); + $input.tooltip({placement: 'bottom', trigger: 'manual', title: t('core', 'Copied!')}); + $input.tooltip('show'); + _.delay(function() { + $input.tooltip('hide'); + }, 3000); + }); + clipboard.on('error', function (e) { + $input = $(e.trigger); + var actionMsg = ''; + if (/iPhone|iPad/i.test(navigator.userAgent)) { + actionMsg = t('core', 'Not supported!'); + } else if (/Mac/i.test(navigator.userAgent)) { + actionMsg = t('core', 'Press ⌘-C to copy.'); + } else { + actionMsg = t('core', 'Press Ctrl-C to copy.'); + } + + $input.tooltip({ + placement: 'bottom', + trigger: 'manual', + title: actionMsg + }); + $input.tooltip('show'); + _.delay(function () { + $input.tooltip('hide'); + }, 3000); + }); }); |