Skip to content

Commit

Permalink
Fix marker icon path.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruslan Kabalin authored and kabalin committed Feb 3, 2019
1 parent 37bff77 commit 19cd2e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/templates/locations/location_page.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Template.locationPage.onRendered(function() {
position: markerLatLng,
map: map,
title: self.data.location.title,
icon: 'logo-icon-marker.png',
icon: '/logo-icon-marker.png',
id: self.data.location._id
});
c.stop();
Expand Down
2 changes: 1 addition & 1 deletion client/templates/locations/locations_page.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Template.locationsPage.onCreated(function() {
position: latLng,
map: map,
title: location.title,
icon: 'logo-icon-marker.png',
icon: '/logo-icon-marker.png',
id: location._id
});
// Create infowindow.
Expand Down

0 comments on commit 19cd2e3

Please sign in to comment.