Changeset 2393288
- Timestamp:
- 10/05/2020 01:38:51 AM (5 years ago)
- Location:
- snazzy-maps/trunk
- Files:
-
- 3 edited
-
admin/index.js (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
-
snazzymaps.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
snazzy-maps/trunk/admin/index.js
r1918571 r2393288 129 129 }; 130 130 131 $( "#explore-list select").live("change", function() {131 $(document).on("change", "#explore-list select", function() { 132 132 var q = {}; 133 133 q[this.name] = $(this).val(); … … 135 135 replaceGET(q); 136 136 }); 137 $( "#search-form").live("submit", function() {137 $(document).on("submit", "#search-form", function() { 138 138 replaceGET({ 139 139 text: $(this).find('input[name="text"]').val(), … … 143 143 }); 144 144 145 $( ".style").live("submit", function() {145 $(document).on("submit", ".style", function() { 146 146 $(this) 147 147 .find('input[name="new_style"]') … … 150 150 151 151 //Pagination 152 $( ".tablenav-pages a").live("click", function() {152 $(document).on("click", ".tablenav-pages a", function() { 153 153 replaceGET({ ppage: $(this).data("page") }); 154 154 return false; 155 155 }); 156 156 157 $( ".current-page").live("change", function() {157 $(document).on("change", ".current-page", function() { 158 158 var start = $(".first-page").data("page"); 159 159 var end = $(".last-page").data("page"); -
snazzy-maps/trunk/readme.txt
r2202394 r2393288 4 4 Tags: google,maps,google maps,styled maps,styles,color,schemes,themes 5 5 Requires at least: 3.0 6 Tested up to: 5. 37 Stable tag: 1. 2.16 Tested up to: 5.5.1 7 Stable tag: 1.3.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 99 99 == Changelog == 100 100 101 = 1.3.0 = 102 Release 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 101 106 = 1.2.1 = 102 107 Release Date: November 27th, 2019 -
snazzy-maps/trunk/snazzymaps.php
r2202394 r2393288 4 4 * Plugin URI: https://snazzymaps.com/plugins 5 5 * Description: Apply styles to your Google Maps with the official Snazzy Maps WordPress plugin. 6 * Version: 1. 2.16 * Version: 1.3.0 7 7 * Author: Snazzy Maps 8 8 * Author URI: https://snazzymaps.com … … 31 31 define('SNAZZY_MAPS_API_BASE', 'https://snazzymaps.com/'); 32 32 define('SNAZZY_MAPS_API_KEY', 'ecaccc3c-44fa-486c-9503-5d473587a493'); 33 define('SNAZZY_MAPS_VERSION_NUMBER', '1. 2.1');33 define('SNAZZY_MAPS_VERSION_NUMBER', '1.3.0'); 34 34 35 35 if(!defined('_DS')) {
Note: See TracChangeset
for help on using the changeset viewer.