This commit is contained in:
rolux 2012-06-19 17:37:57 +02:00
parent f9dd2661f8
commit 4c3ef380b1
2 changed files with 2 additions and 5 deletions

View file

@ -27,9 +27,6 @@ Ox.load(['Geo', 'UI'], function() {
width: 256
},
{
format: function(value) {
return value.split(', ')[0];
},
id: 'continent',
operator: '+',
title: 'Continent',

View file

@ -877,10 +877,10 @@ Ox.Map = function(options, self) {
// Google seems to sometimes set position to 'relative'
if (self.$map.css('position') == 'absolute') {
google.maps.event.trigger(self.map, 'resize');
} else {
self.$map.css({position: 'absolute'});
that.resizeMap();
} else {
google.maps.event.trigger(self.map, 'resize');
}
// needed to get mouse x/y coordinates on marker mouseover,