Server IP : 184.154.167.98 / Your IP : 18.222.168.73 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/tampico1900/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, _)