PATH:
home
/
lab2454c
/
caimegroup.com
/
wp-content
/
plugins
/
user-registration
/
assets
/
js
/
admin
/** * Simple text copy functions using native browser clipboard capabilities. * @since 1.4.3 */ jQuery(function ($) { var URCopyShortcode = { /** * Initiate copy shortcode process. */ init: function () { $(".ur-copy-shortcode").each(function () { var $this = $(this); $this.on("click", function (evt) { var res = $this.parent().find(".code").val(); URCopyShortcode.urSetClipboard(res, $this); $this .tooltipster( 'content', $( this ).attr( 'data-copied' ) ) .trigger( 'focus' ) .on( 'mouseleave', function() { var $this = $( this ); setTimeout( function() { $this.tooltipster( 'content', $this.attr( 'data-tip' ) ); }, 1000 ); } ); evt.preventDefault(); }); }); }, /** * Set the user's clipboard contents. * * @param string data: Text to copy to clipboard. * @param object $el: jQuery element to trigger copy events on. (Default: document) */ urSetClipboard: function (data, $el) { if ("undefined" === typeof $el) { $el = jQuery(document); } var $temp_input = jQuery('<textarea style="opacity:0">'); jQuery("body").append($temp_input); $temp_input.val(data).select(); $el.trigger("beforecopy"); try { document.execCommand("copy"); $el.trigger("aftercopy"); } catch (err) { $el.trigger("aftercopyfailure"); } $temp_input.remove(); }, /** * Clear the user's clipboard. */ urClearClipboard: function () { URCopyShortcode.urSetClipboard(""); }, }; /** * Initiate copy shortcode process. */ URCopyShortcode.init(); });
[-] ur-notice.min.js
[edit]
[-] form-modal.min.js
[edit]
[-] deactivation-feedback.js
[edit]
[+]
..
[-] admin.js
[edit]
[-] dashboard-widget.min.js
[edit]
[-] backbone-modal.min.js
[edit]
[-] enhanced-select.min.js
[edit]
[-] form-templates.min.js
[edit]
[-] ur-notice.js
[edit]
[-] backbone-modal.js
[edit]
[-] ur-copy.js
[edit]
[-] live-user-notice.js
[edit]
[-] deactivation-feedback.min.js
[edit]
[+]
gutenberg
[-] form-builder.js
[edit]
[-] form-templates.js
[edit]
[-] form-builder.min.js
[edit]
[-] form-settings.min.js
[edit]
[-] settings.js
[edit]
[-] ur-copy.min.js
[edit]
[-] ur-setup.js
[edit]
[-] form-settings.js
[edit]
[-] ur-setup.min.js
[edit]
[-] enhanced-select.js
[edit]
[-] form-modal.js
[edit]
[-] dashboard-widget.js
[edit]
[-] settings.min.js
[edit]
[-] admin.min.js
[edit]
[-] live-user-notice.min.js
[edit]