diff --git a/source/Ox.UI/js/Map/Ox.ListMap.js b/source/Ox.UI/js/Map/Ox.ListMap.js index 2c11e2b1..17a8e4ad 100644 --- a/source/Ox.UI/js/Map/Ox.ListMap.js +++ b/source/Ox.UI/js/Map/Ox.ListMap.js @@ -513,6 +513,7 @@ Ox.ListMap = function(options, self) { .bindEvent({ click: self.$map.newPlace }) + .appendTo(self.$placeStatusbar); self.$placeButton = Ox.Button({ title: 'Add Place', @@ -729,13 +730,13 @@ Ox.ListMap = function(options, self) { self.$placeTitle.show(); self.$placeForm.values(place).show(); self.$areaKmInput.options({value: Ox.formatArea(place.area)}); - self.$placeButton.options({title: isResult ? 'Add Place' : 'Remove Place'}); + self.$placeButton.options({title: isResult ? 'Add Place' : 'Remove Place'}).show(); self.$revertButton.options({disabled: true}).show(); } else { self.selectedPlace = null; self.$placeTitle.hide(); self.$placeForm.hide(); - self.$placeButton.options({title: 'New Place'}); + self.$placeButton.hide(); self.$revertButton.hide(); } }