Plugin Directory

Changeset 961379


Ignore:
Timestamp:
08/06/2014 09:59:19 PM (12 years ago)
Author:
awerhane74
Message:

[Release 1.0.3] Added support for WP 3.5.0+

Location:
easy-maps/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • easy-maps/trunk/css/admin-style.css

    r957656 r961379  
    163163 
    164164#trippy-autocompleter-query {
    165     width:90%;
     165    width:87%;
    166166}
    167167 
  • easy-maps/trunk/easy-maps.php

    r958349 r961379  
    77 * Description: Enhance your posts with Google Maps.  Use the Trippy Easy Maps plugin to easily create more dynamic content.
    88 * Plugin URI:
    9  * Version:     1.0.2
     9 * Version:     1.0.3
    1010 * Author:      Team Trippy
    1111 * Author URI:  http://www.trippy.com
  • easy-maps/trunk/plugin.js

    r957656 r961379  
    271271
    272272           
    273             editor.insertContent("<a target=\"_blank\" class=\"trippy-place-element\" data-trippy-description=\"" + place.shortDescription + "\" data-trippy-website=\"" + place.website + "\" data-trippy-city-country=\"" + place.smartCityCountry + "\" data-trippy-address=\"" + place.address + "\" data-trippy-phone=\"" + place.phone + "\" data-trippy-name=\"" + place.name +"\" data-trippy-place-id=\"" + place.id +"\" data-coords=\"" +place.latitude +","+ place.longitude + "\" href=\""+ trippyBaseUrl + "/place/" + place.id +"\">" +place.name + "</a>");
     273            if (editor.insertContent) {
     274                editor.insertContent("<a target=\"_blank\" class=\"trippy-place-element\" data-trippy-description=\"" + place.shortDescription + "\" data-trippy-website=\"" + place.website + "\" data-trippy-city-country=\"" + place.smartCityCountry + "\" data-trippy-address=\"" + place.address + "\" data-trippy-phone=\"" + place.phone + "\" data-trippy-name=\"" + place.name +"\" data-trippy-place-id=\"" + place.id +"\" data-coords=\"" +place.latitude +","+ place.longitude + "\" href=\""+ trippyBaseUrl + "/place/" + place.id +"\">" +place.name + "</a>");
     275            } else {
     276                editor.selection.setContent("<a target=\"_blank\" class=\"trippy-place-element\" data-trippy-description=\"" + place.shortDescription + "\" data-trippy-website=\"" + place.website + "\" data-trippy-city-country=\"" + place.smartCityCountry + "\" data-trippy-address=\"" + place.address + "\" data-trippy-phone=\"" + place.phone + "\" data-trippy-name=\"" + place.name +"\" data-trippy-place-id=\"" + place.id +"\" data-coords=\"" +place.latitude +","+ place.longitude + "\" href=\""+ trippyBaseUrl + "/place/" + place.id +"\">" +place.name + "</a>");
     277            }
    274278            removeAutocompleterContainerView();
    275279           
  • easy-maps/trunk/readme.txt

    r958351 r961379  
    22Contributors: awerhane74
    33Tags: maps, travel,
    4 Requires at least: 3.9.0
     4Requires at least: 3.5.0
    55Tested up to: 3.9
    66Stable tag: trunk
     
    1212== Description ==
    1313
    14 Enhance your posts with Google Maps.  Use the Easy Maps plugin to easily create more dynamic content with an inline editor.
    15 While editing a post, type the "@" symbol to bring up the place autocompleter.  Start typing the name of a location, restaurant,
    16 hotel or attraction and then select it from the search results.  Once selected, a marker will be dropped onto the map for each
    17 place mentioned.
     14In literally just a few seconds, you can add beautiful Google maps to any of your posts with Easy Maps (watch the video below to see it in action!). 
     15As you write, Easy Maps can instantly find towns, restaurants, attraction, hotels and more.  And because it's connected with Trippy.com,
     16using Easy Maps in a post will automagically get your post listed as a resource on Trippy.com, which means more new readers for your blog.
    1817
    1918[youtube https://www.youtube.com/watch?v=tT4agJzRjv0&feature=youtu.be]
     
    4443
    4544== Changelog ==
     45= 1.0.3 =
     46* Added support for Wordpress 3.5.0
     47
    4648= 1.0.2 =
    4749* Changed default map position to "right"
Note: See TracChangeset for help on using the changeset viewer.