Flexible Map - Version 1.7.3.1

Version Description

[2014-03-22] = * fixed: infowindow width on some Webkit browsers, and IE10/11

Download this release

Release Info

Developer webaware
Plugin Icon 128x128 Flexible Map
Version 1.7.3.1
Comparing to
See all releases

Code changes from version 1.7.3 to 1.7.3.1

Files changed (3) hide show
  1. flexible-map.php +2 -2
  2. readme.txt +7 -4
  3. styles.css +18 -0
flexible-map.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Flexible Map
4
  Plugin URI: http://flexible-map.webaware.net.au/
5
  Description: Embed Google Maps in pages and posts, either by centre coodinates or street address, or by URL to a Google Earth KML file.
6
- Version: 1.7.3
7
  Author: WebAware
8
  Author URI: http://www.webaware.com.au/
9
  */
@@ -33,7 +33,7 @@ if (!defined('FLXMAP_PLUGIN_ROOT')) {
33
  if (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG)
34
  define('FLXMAP_PLUGIN_VERSION', time());
35
  else
36
- define('FLXMAP_PLUGIN_VERSION', '1.7.3');
37
 
38
  // shortcode tags
39
  define('FLXMAP_PLUGIN_TAG_MAP', 'flexiblemap');
3
  Plugin Name: Flexible Map
4
  Plugin URI: http://flexible-map.webaware.net.au/
5
  Description: Embed Google Maps in pages and posts, either by centre coodinates or street address, or by URL to a Google Earth KML file.
6
+ Version: 1.7.3.1
7
  Author: WebAware
8
  Author URI: http://www.webaware.com.au/
9
  */
33
  if (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG)
34
  define('FLXMAP_PLUGIN_VERSION', time());
35
  else
36
+ define('FLXMAP_PLUGIN_VERSION', '1.7.3.1');
37
 
38
  // shortcode tags
39
  define('FLXMAP_PLUGIN_TAG_MAP', 'flexiblemap');
readme.txt CHANGED
@@ -6,8 +6,8 @@ Author URI: http://www.webaware.com.au/
6
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6ZCY9PST8E4GQ
7
  Tags: google, map, maps, google maps, shortcode, google maps shortcode, kml
8
  Requires at least: 3.2.1
9
- Tested up to: 3.8.1
10
- Stable tag: 1.7.3
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
@@ -48,7 +48,7 @@ Many thanks to the generous efforts of these people for human translations:
48
 
49
  * Dutch (nl) -- [Ivan Beemster](http://www.lijndiensten.com/)
50
  * French (fr) -- [mister klucha](http://profiles.wordpress.org/mister-klucha/)
51
- * German (de) -- [Carib Design](http://www.caribdesign.com//)
52
  * Greek (el) -- [Pantelis Orfanos](http://profiles.wordpress.org/ironwiller/)
53
  * Spanish (es) -- [edurramos](http://profiles.wordpress.org/edurramos/)
54
 
@@ -297,8 +297,11 @@ Either turn off CloudFlare Rocketscript :) or install the [Flxmap No Rocketscrip
297
 
298
  == Changelog ==
299
 
 
 
 
300
  = 1.7.3 [2014-03-16] =
301
- * fixed: German translation (thanks, [Carib Design](http://www.caribdesign.com//)!)
302
  * fixed: some themes (e.g. Evolve) mess up Google Maps directions markers
303
  * fixed: CSS for infowindows with Google Maps Visual Refresh / API v3.15
304
  * changed: removed instructions page, better handled by new homepage for plugin
6
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6ZCY9PST8E4GQ
7
  Tags: google, map, maps, google maps, shortcode, google maps shortcode, kml
8
  Requires at least: 3.2.1
9
+ Tested up to: 3.9
10
+ Stable tag: 1.7.3.1
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
48
 
49
  * Dutch (nl) -- [Ivan Beemster](http://www.lijndiensten.com/)
50
  * French (fr) -- [mister klucha](http://profiles.wordpress.org/mister-klucha/)
51
+ * German (de) -- [Carib Design](http://www.caribdesign.com/)
52
  * Greek (el) -- [Pantelis Orfanos](http://profiles.wordpress.org/ironwiller/)
53
  * Spanish (es) -- [edurramos](http://profiles.wordpress.org/edurramos/)
54
 
297
 
298
  == Changelog ==
299
 
300
+ = 1.7.3.1 [2014-03-22] =
301
+ * fixed: infowindow width on some Webkit browsers, and IE10/11
302
+
303
  = 1.7.3 [2014-03-16] =
304
+ * fixed: German translation (thanks, [Carib Design](http://www.caribdesign.com/)!)
305
  * fixed: some themes (e.g. Evolve) mess up Google Maps directions markers
306
  * fixed: CSS for infowindows with Google Maps Visual Refresh / API v3.15
307
  * changed: removed instructions page, better handled by new homepage for plugin
styles.css CHANGED
@@ -35,3 +35,21 @@
35
  .gm-style .gm-style-iw .flxmap-marker-title {
36
  font-weight: bold;
37
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  .gm-style .gm-style-iw .flxmap-marker-title {
36
  font-weight: bold;
37
  }
38
+
39
+ /* fix info window width on some Webkit browsers */
40
+ .gm-style-iw {
41
+ min-width: intrinsic;
42
+ min-width: -webkit-fit-content;
43
+ min-width: -moz-fit-content;
44
+ min-width: fit-content;
45
+ }
46
+
47
+ /* fix info window title width on IE10+ */
48
+ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
49
+
50
+ .gm-style .gm-style-iw .flxmap-marker-title {
51
+ white-space: nowrap;
52
+ word-wrap: normal;
53
+ }
54
+
55
+ }