Plugin Directory

Changeset 958349


Ignore:
Timestamp:
07/31/2014 09:35:46 PM (12 years ago)
Author:
awerhane74
Message:

[Release 1.0.2] Changed default map position to "RIGHT". Updated screenshots.

Location:
easy-maps/trunk
Files:
2 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • easy-maps/trunk/easy-maps.php

    r957656 r958349  
    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.1
     9 * Version:     1.0.2
    1010 * Author:      Team Trippy
    1111 * Author URI:  http://www.trippy.com
     
    7777function trippy_map_panel_add()
    7878{
    79     add_meta_box( 'trippy-map-preview-container', 'Trippy Map Preview', 'trippy_render_map_panel', 'post', 'normal', 'high' );
     79    add_meta_box( 'trippy-map-preview-container', 'Easy Maps Map Preview', 'trippy_render_map_panel', 'post', 'normal', 'high' );
    8080}
    8181
     
    8888    $currentLayoutMode = getTrippyMapLayoutOption();
    8989   
     90    $selectedLeft = "";
     91    $selectedRight = "";
     92    $selectedBottom = "";
    9093    if ($currentLayoutMode == "left") {
    9194        $selectedLeft = " checked=YES ";
     
    133136   
    134137   
    135     $currentLayoutMode = getTrippyMapLayoutOption();
     138    $currentLayoutMode = getTrippyMapLayoutOption() ? getTrippyMapLayoutOption() : "right" ;
    136139   
    137140   
     
    272275   
    273276    if (!$currentLayoutMode) {
    274         $currentLayoutMode = "bottom";
     277        $currentLayoutMode = "right";
    275278    }
    276279    return $currentLayoutMode;
  • easy-maps/trunk/readme.txt

    r957756 r958349  
    3838== Screenshots ==
    3939
    40 1. Autocompleter Interface
    41 2. Map Preview
    42 3. Map Output
     401: Magically add a map without ever leaving your post.
     412: Control how the map displays in your post
     423: Adding a few more places on the fly
     434: What it looks like in a published post
    4344
    4445== Changelog ==
     46= 1.0.2 =
     47* Changed default map position to "right"
    4548
    4649= 1.0.1 =
Note: See TracChangeset for help on using the changeset viewer.