Plugin Directory

Changeset 2663286


Ignore:
Timestamp:
01/24/2022 11:34:16 AM (4 years ago)
Author:
mowomo
Message:

Update to 2.0.4

Location:
mowomo-redes-sociales
Files:
77 added
3 edited

Legend:

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

    r2581349 r2663286  
    33Tags: buttons, icons, share, social media, social share, social buttons
    44Requires at least: 4.6
    5 Tested up to: 5.8
    6 Stable tag: 2.0.3
     5Tested up to: 5.9
     6Stable tag: 2.0.4
    77Requires PHP: 5.2.4
    88License: GPLv2 or later
     
    3636
    3737== Changelog ==
     38= 2.0.4 =
     39
     40-   Revised the plugin to version 5.9
     41-   Bugs fixed
     42
    3843= 2.0.3 =
    3944
  • mowomo-redes-sociales/trunk/includes/frontend/class.mwm-rrss.php

    r2581349 r2663286  
    125125            ?>
    126126                <script>
    127                 jQuery(document).on("ready", function() {
    128                     jQuery(".mwm_rrss").on("click", function() {
     127                jQuery(document).on("load", function() {
     128                    jQuery(document.body).on("click", ".mwm_rrss", function() {
    129129                        // Get data
    130130                        var url = jQuery(this).attr("mwm-rrss-url");
    131131
    132                         // Open window
    133                         window.open(
    134                             url,
    135                             "_blank",
    136                             "toolbar=yes, top=500, left=500, width=400, height=400"
    137                         );
     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                        }
    138140                    });
    139141                });
  • mowomo-redes-sociales/trunk/mowomo-redessociales.php

    r2581349 r2663286  
    88 * Text Domain: mowomo-redes-sociales
    99 * Domain Path: /languages/
    10  * Version: 2.0.3
     10 * Version: 2.0.4
    1111 * License: GPLv2 or later.
    1212 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1313 * WC requires at least: 4.6
    14  * WC tested up to: 5.8
     14 * WC tested up to: 5.9
    1515 */
    1616
     
    3232    return;
    3333} else {
    34     define('MWM_RRSS_VERSION', '2.0.2');
     34    define('MWM_RRSS_VERSION', '2.0.4');
    3535}
    3636if (!defined('MWM_RRSS_SLUG')) {
Note: See TracChangeset for help on using the changeset viewer.