MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/www/me/wp-content/plugins/envira-gallery-lite/assets/js/admin.js
/**
 * Handles:
 * - Copy to Clipboard functionality
 * - Dismissable Notices
 *
 * @since 1.5.0
 */
jQuery( document ).ready( function( $ ) {

    $("#screen-meta-links").prependTo("#envira-header-temp");
    $("#screen-meta").prependTo("#envira-header-temp");

	/**
    * Copy to Clipboard
    */
    if ( typeof Clipboard !== 'undefined' ) {
        var envira_clipboard = new Clipboard( '.envira-clipboard' );
        $( document ).on( 'click', '.envira-clipboard', function( e ) {
            e.preventDefault();
        } );
    }

	/**
    * Dismissable Notices
    * - Sends an AJAX request to mark the notice as dismissed
    */
    $( 'div.envira-notice' ).on( 'click', '.notice-dismiss', function( e ) {

        e.preventDefault();

        $( this ).closest( 'div.envira-notice' ).fadeOut();

        // If this is a dismissible notice, it means we need to send an AJAX request
        if ( $( this ).hasClass( 'is-dismissible' ) ) {
            $.post(
                envira_gallery_admin.ajax,
                {
                	action: 'envira_gallery_ajax_dismiss_notice',
                	nonce: 	envira_gallery_admin.dismiss_notice_nonce,
                	notice: $( this ).parent().data( 'notice' )
                },
                function( response ) {
    			},
                'json'
            );
        }

    } );

});