typo
This commit is contained in:
parent
f9dd2661f8
commit
4c3ef380b1
2 changed files with 2 additions and 5 deletions
|
@ -27,9 +27,6 @@ Ox.load(['Geo', 'UI'], function() {
|
||||||
width: 256
|
width: 256
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
format: function(value) {
|
|
||||||
return value.split(', ')[0];
|
|
||||||
},
|
|
||||||
id: 'continent',
|
id: 'continent',
|
||||||
operator: '+',
|
operator: '+',
|
||||||
title: 'Continent',
|
title: 'Continent',
|
||||||
|
|
|
@ -877,10 +877,10 @@ Ox.Map = function(options, self) {
|
||||||
|
|
||||||
// Google seems to sometimes set position to 'relative'
|
// Google seems to sometimes set position to 'relative'
|
||||||
if (self.$map.css('position') == 'absolute') {
|
if (self.$map.css('position') == 'absolute') {
|
||||||
|
google.maps.event.trigger(self.map, 'resize');
|
||||||
|
} else {
|
||||||
self.$map.css({position: 'absolute'});
|
self.$map.css({position: 'absolute'});
|
||||||
that.resizeMap();
|
that.resizeMap();
|
||||||
} else {
|
|
||||||
google.maps.event.trigger(self.map, 'resize');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// needed to get mouse x/y coordinates on marker mouseover,
|
// needed to get mouse x/y coordinates on marker mouseover,
|
||||||
|
|
Loading…
Reference in a new issue