Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions apps/federatedfilesharing/css/settings-personal.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@
white-space: pre-wrap;
}

#fileSharingSettings .icon {
background-size: 16px 16px;
display: inline-block;
position: relative;
top: 3px;
margin-left: 5px;
}

[class^="social-"], [class*=" social-"] {
background-repeat: no-repeat;
background-position: 2px;
Expand Down
31 changes: 31 additions & 0 deletions apps/federatedfilesharing/js/settings-personal.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,35 @@ $(document).ready(function() {
$('#oca-files-sharing-add-to-your-website-expanded').slideDown();
});

// 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);
});
});
3 changes: 2 additions & 1 deletion apps/federatedfilesharing/templates/settings-personal.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@

<p>
<?php p($l->t('Your Federated Cloud ID:')); ?>
<strong><?php p($_['cloudId']); ?></strong>
<strong id="cloudid"><?php p($_['cloudId']); ?></strong>
<a class="clipboardButton icon icon-clippy" data-clipboard-target="#cloudid"></a>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The extra .icon class is not needed. ;)

</p>

<br>
Expand Down