ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/luckymerchan/layout/default/node_modules/clipboard/src/actions/ |
import select from 'select'; import command from '../common/command'; import createFakeElement from '../common/create-fake-element'; /** * Create fake copy action wrapper using a fake element. * @param {String} target * @param {Object} options * @return {String} */ const fakeCopyAction = (value, options) => { const fakeElement = createFakeElement(value); options.container.appendChild(fakeElement); const selectedText = select(fakeElement); command('copy'); fakeElement.remove(); return selectedText; }; /** * Copy action wrapper. * @param {String|HTMLElement} target * @param {Object} options * @return {String} */ const ClipboardActionCopy = ( target, options = { container: document.body } ) => { let selectedText = ''; if (typeof target === 'string') { selectedText = fakeCopyAction(target, options); } else if ( target instanceof HTMLInputElement && !['text', 'search', 'url', 'tel', 'password'].includes(target?.type) ) { // If input type doesn't support `setSelectionRange`. Simulate it. https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/setSelectionRange selectedText = fakeCopyAction(target.value, options); } else { selectedText = select(target); command('copy'); } return selectedText; }; export default ClipboardActionCopy;