| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/nextcloud/apps/firstrunwizard/js/ |
Upload File : |
(function($, OC, _) {
$(document).ready(function() {
initLinkToClipboard()
$('#endpoint-url').on('click', function() {
$(this).select()
})
})
function initLinkToClipboard() {
var originalTitle = t('firstrunwizard', 'Copy to clipboard')
/* reused from settings/js/authtoken_view.js */
$('#endpoint-url + .clipboardButton').tooltip({
placement: 'bottom',
title: originalTitle,
trigger: 'hover'
})
// Clipboard!
var clipboard = new Clipboard('.clipboardButton')
clipboard.on('success', function(e) {
var $input = $(e.trigger)
// show copied notification
$input.tooltip('hide')
.attr('data-original-title', t('firstrunwizard', 'Copied!'))
.tooltip('fixTitle')
.tooltip({
placement: 'bottom',
trigger: 'manual'
})
.tooltip('show')
// revert back to original title
_.delay(function() {
$input.tooltip('hide')
.attr('data-original-title', originalTitle)
.tooltip('fixTitle')
}, 3000)
})
clipboard.on('error', function(e) {
var $input = $(e.trigger)
var actionMsg = ''
if (/iPhone|iPad/i.test(navigator.userAgent)) {
actionMsg = t('firstrunwizard', 'Not supported!')
} else if (/Mac/i.test(navigator.userAgent)) {
actionMsg = t('firstrunwizard', 'Press ⌘-C to copy.')
} else {
actionMsg = t('firstrunwizard', 'Press Ctrl-C to copy.')
}
// show error
$input.tooltip('hide')
.attr('data-original-title', actionMsg)
.tooltip('fixTitle')
.tooltip({
placement: 'bottom',
trigger: 'manual'
})
.tooltip('show')
// revert back to original title
_.delay(function() {
$input.tooltip('hide')
.attr('data-original-title', originalTitle)
.tooltip('fixTitle')
}, 3000)
})
}
})(jQuery, OC, _)