PATH:
home
/
lab2454c
/
veritserv.com
/
wp-content
/
plugins
/
user-registration-pro
/
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({ theme: 'tooltipster-borderless', attribute: "data-copied", activation: "focus", fadeIn: 50, fadeOut: 50, delay: 200, }) .trigger("focus"); 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]
[-] plugins.js
[edit]
[+]
..
[-] admin.js
[edit]
[-] dashboard-widget.min.js
[edit]
[-] backbone-modal.min.js
[edit]
[-] enhanced-select.min.js
[edit]
[-] ur-notice.js
[edit]
[-] backbone-modal.js
[edit]
[-] ur-copy.js
[edit]
[-] live-user-notice.js
[edit]
[+]
gutenberg
[-] form-builder.js
[edit]
[-] form-builder.min.js
[edit]
[-] form-template-controller.min.js
[edit]
[-] settings.js
[edit]
[-] plugins.min.js
[edit]
[-] ur-copy.min.js
[edit]
[-] ur-setup.js
[edit]
[-] ur-setup.min.js
[edit]
[-] .htaccess
[edit]
[-] enhanced-select.js
[edit]
[-] form-modal.js
[edit]
[-] dashboard-widget.js
[edit]
[-] form-template-controller.js
[edit]
[-] settings.min.js
[edit]
[-] admin.min.js
[edit]
[-] live-user-notice.min.js
[edit]