Plugin Directory

Changeset 2668006


Ignore:
Timestamp:
01/28/2022 10:10:29 AM (4 years ago)
Author:
mowomo
Message:

Update to version 2.0.5

Location:
mowomo-redes-sociales/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • mowomo-redes-sociales/trunk/README.md

    r2663286 r2668006  
    44Requires at least: 4.6
    55Tested up to: 5.9
    6 Stable tag: 2.0.4
     6Stable tag: 2.0.5
    77Requires PHP: 5.2.4
    88License: GPLv2 or later
     
    3636
    3737== Changelog ==
     38= 2.0.5 =
     39
     40-   Bugs fixed
     41
    3842= 2.0.4 =
    3943
  • mowomo-redes-sociales/trunk/includes/frontend/class.mwm-rrss.php

    r2663286 r2668006  
    125125            ?>
    126126                <script>
    127                 jQuery(document).on("load", function() {
    128                     jQuery(document.body).on("click", ".mwm_rrss", function() {
    129                         // Get data
    130                         var url = jQuery(this).attr("mwm-rrss-url");
    131 
    132                         if ( url ) {
    133                             // Open window
    134                             window.open(
    135                                 url,
    136                                 "_blank",
    137                                 "toolbar=yes, top=500, left=500, width=400, height=400"
    138                             );
    139                         }
    140                     });
    141                 });
     127                    jQuery(window).on("load", function() {
     128                        jQuery(document.body).on("click", ".mwm_rrss", function() {
     129                            // Get data
     130                            var url = jQuery(this).attr("mwm-rrss-url");
     131
     132                            if ( url ) {
     133                                // Open window
     134                                window.open(
     135                                    url,
     136                                    "_blank",
     137                                    "toolbar=yes, top=500, left=500, width=400, height=400"
     138                                );
     139                            }
     140                        });
     141                    });
    142142                </script>
    143143            <?php
  • mowomo-redes-sociales/trunk/mowomo-redessociales.php

    r2663286 r2668006  
    88 * Text Domain: mowomo-redes-sociales
    99 * Domain Path: /languages/
    10  * Version: 2.0.4
     10 * Version: 2.0.5
    1111 * License: GPLv2 or later.
    1212 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3232    return;
    3333} else {
    34     define('MWM_RRSS_VERSION', '2.0.4');
     34    define('MWM_RRSS_VERSION', '2.0.5');
    3535}
    3636if (!defined('MWM_RRSS_SLUG')) {
Note: See TracChangeset for help on using the changeset viewer.