Plugin Directory

Changeset 2393288


Ignore:
Timestamp:
10/05/2020 01:38:51 AM (5 years ago)
Author:
atmistinc
Message:
  • Update: Minor changes to ensure that the plugin works with newer versions of WordPress up to 5.5.1.
Location:
snazzy-maps/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • snazzy-maps/trunk/admin/index.js

    r1918571 r2393288  
    129129  };
    130130
    131   $("#explore-list select").live("change", function() {
     131  $(document).on("change", "#explore-list select", function() {
    132132    var q = {};
    133133    q[this.name] = $(this).val();
     
    135135    replaceGET(q);
    136136  });
    137   $("#search-form").live("submit", function() {
     137  $(document).on("submit", "#search-form", function() {
    138138    replaceGET({
    139139      text: $(this).find('input[name="text"]').val(),
     
    143143  });
    144144
    145   $(".style").live("submit", function() {
     145  $(document).on("submit", ".style", function() {
    146146    $(this)
    147147      .find('input[name="new_style"]')
     
    150150
    151151  //Pagination
    152   $(".tablenav-pages a").live("click", function() {
     152  $(document).on("click", ".tablenav-pages a", function() {
    153153    replaceGET({ ppage: $(this).data("page") });
    154154    return false;
    155155  });
    156156
    157   $(".current-page").live("change", function() {
     157  $(document).on("change", ".current-page", function() {
    158158    var start = $(".first-page").data("page");
    159159    var end = $(".last-page").data("page");
  • snazzy-maps/trunk/readme.txt

    r2202394 r2393288  
    44Tags: google,maps,google maps,styled maps,styles,color,schemes,themes
    55Requires at least: 3.0
    6 Tested up to: 5.3
    7 Stable tag: 1.2.1
     6Tested up to: 5.5.1
     7Stable tag: 1.3.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9999== Changelog ==
    100100
     101= 1.3.0 =
     102Release Date: October 4th, 2020
     103
     104* Update: Minor changes to ensure that the plugin works with newer versions of WordPress up to 5.5.1.
     105
    101106= 1.2.1 =
    102107Release Date: November 27th, 2019
  • snazzy-maps/trunk/snazzymaps.php

    r2202394 r2393288  
    44 * Plugin URI: https://snazzymaps.com/plugins
    55 * Description: Apply styles to your Google Maps with the official Snazzy Maps WordPress plugin.
    6  * Version: 1.2.1
     6 * Version: 1.3.0
    77 * Author: Snazzy Maps
    88 * Author URI: https://snazzymaps.com
     
    3131define('SNAZZY_MAPS_API_BASE', 'https://snazzymaps.com/');
    3232define('SNAZZY_MAPS_API_KEY', 'ecaccc3c-44fa-486c-9503-5d473587a493');
    33 define('SNAZZY_MAPS_VERSION_NUMBER', '1.2.1');
     33define('SNAZZY_MAPS_VERSION_NUMBER', '1.3.0');
    3434
    3535if(!defined('_DS')) {
Note: See TracChangeset for help on using the changeset viewer.