Changeset 958349
- Timestamp:
- 07/31/2014 09:35:46 PM (12 years ago)
- Location:
- easy-maps/trunk
- Files:
-
- 2 added
- 1 deleted
- 4 edited
-
easy-maps.php (modified) (5 diffs)
-
readme.txt (modified) (1 diff)
-
screenshot-1.jpg (added)
-
screenshot-1.png (deleted)
-
screenshot-2.jpg (modified) (previous)
-
screenshot-3.jpg (modified) (previous)
-
screenshot-4.jpg (added)
Legend:
- Unmodified
- Added
- Removed
-
easy-maps/trunk/easy-maps.php
r957656 r958349 7 7 * Description: Enhance your posts with Google Maps. Use the Trippy Easy Maps plugin to easily create more dynamic content. 8 8 * Plugin URI: 9 * Version: 1.0. 19 * Version: 1.0.2 10 10 * Author: Team Trippy 11 11 * Author URI: http://www.trippy.com … … 77 77 function trippy_map_panel_add() 78 78 { 79 add_meta_box( 'trippy-map-preview-container', ' TrippyMap 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' ); 80 80 } 81 81 … … 88 88 $currentLayoutMode = getTrippyMapLayoutOption(); 89 89 90 $selectedLeft = ""; 91 $selectedRight = ""; 92 $selectedBottom = ""; 90 93 if ($currentLayoutMode == "left") { 91 94 $selectedLeft = " checked=YES "; … … 133 136 134 137 135 $currentLayoutMode = getTrippyMapLayoutOption() ;138 $currentLayoutMode = getTrippyMapLayoutOption() ? getTrippyMapLayoutOption() : "right" ; 136 139 137 140 … … 272 275 273 276 if (!$currentLayoutMode) { 274 $currentLayoutMode = " bottom";277 $currentLayoutMode = "right"; 275 278 } 276 279 return $currentLayoutMode; -
easy-maps/trunk/readme.txt
r957756 r958349 38 38 == Screenshots == 39 39 40 1. Autocompleter Interface 41 2. Map Preview 42 3. Map Output 40 1: Magically add a map without ever leaving your post. 41 2: Control how the map displays in your post 42 3: Adding a few more places on the fly 43 4: What it looks like in a published post 43 44 44 45 == Changelog == 46 = 1.0.2 = 47 * Changed default map position to "right" 45 48 46 49 = 1.0.1 =
Note: See TracChangeset
for help on using the changeset viewer.