Plugin Directory

Changeset 1095048


Ignore:
Timestamp:
02/20/2015 10:40:26 AM (11 years ago)
Author:
HeroPlugins
Message:

Changed Google Maps autocomplete to load after map idle

Location:
hero-maps-pro
Files:
371 added
4 edited

Legend:

Unmodified
Added
Removed
  • hero-maps-pro/trunk/assets/js/frontend_script.js

    r1087159 r1095048  
    2929            var script = document.createElement("script");
    3030            script.type = "text/javascript";
    31             script.src = "http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places&callback=hmapspro_map_initialiser";
     31            script.src = "https://maps.googleapis.com/maps/api/js?sensor=false&libraries=places&callback=hmapspro_map_initialiser";
    3232            document.body.appendChild(script);
    3333        }
  • hero-maps-pro/trunk/hmapspro.php

    r1094256 r1095048  
    66        Plugin URI: http://www.heroplugins.com
    77        Description: Easily create your own Google Maps with a simple drag and drop interface
    8         Version: 2.0.5
     8        Version: 2.0.6
    99        Author: Hero Plugins
    1010        Author URI: http://www.heroplugins.com
     
    5959        private $plugin_friendly_name = 'Hero Maps Pro';
    6060        private $plugin_friendly_description = 'Easily create your own Google Maps with a simple drag and drop interface';
    61         private $plugin_version = '2.0.5';
     61        private $plugin_version = '2.0.6';
    6262        private $plugin_prefix = 'hmapspro_';
    6363        private $first_release = '2014-11-24';
    64         private $last_update = '2015-02-19';
     64        private $last_update = '2015-02-20';
    6565        private $api_version = '2.0.1';
    6666       
  • hero-maps-pro/trunk/readme.txt

    r1094253 r1095048  
    33Requires at least: 3.3
    44Tested up to: 4.1
    5 Stable Tag: 2.0.5
     5Stable Tag: 2.0.6
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5858== Changelog ==
    5959
     60= 2.0.6 =
     61* Changed Google Maps to load over HTTPS
     62
    6063= 2.0.5 =
    6164* Changed Google Maps autocomplete to load after map idle
  • hero-maps-pro/trunk/views/maps/js/view.core.js

    r1094253 r1095048  
    128128        var script = document.createElement("script");
    129129        script.type = "text/javascript";
    130         script.src = "http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places&callback=initialise_map";
     130        script.src = "https://maps.googleapis.com/maps/api/js?sensor=false&libraries=places&callback=initialise_map";
    131131        document.body.appendChild(script);
    132132    }
Note: See TracChangeset for help on using the changeset viewer.