diff --git a/source/Ox.UI/js/Map/Map.js b/source/Ox.UI/js/Map/Map.js index 7f25f88e..8786006a 100644 --- a/source/Ox.UI/js/Map/Map.js +++ b/source/Ox.UI/js/Map/Map.js @@ -74,9 +74,9 @@ Ox.Map Basic map object lng Longitude types <[s]> Types (like "country" or "political") load load - select select - selectplace Fires when a place has been selected or deselected + select Fires when a place has been selected or deselected place Place object + selectplace Deprecated togglecontrols togglecontrols togglelabels togglelabels @*/ @@ -1226,8 +1226,8 @@ Ox.Map = function(options, self) { self.options.selected = id; setPlaceControls(place); setStatus(); - that.triggerEvent('selectplace', place); // FIXME: DEPRECATED - that.triggerEvent('select', {place: place}); + that.triggerEvent('selectplace', place); // FIXME: deprecated, remove + that.triggerEvent('select', place); } };