Skip to content

Commit

Permalink
fix stop editor dialog placement
Browse files Browse the repository at this point in the history
  • Loading branch information
kpwebb committed Sep 10, 2015
1 parent 6729b31 commit 701639e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/javascripts/views/route-stops-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,22 @@ var GtfsEditor = GtfsEditor || {};
this.agencyMajorStopIcon = L.divIcon({
iconSize: [10, 10],
iconAnchor: [5, 5],
popupAnchor: [5, 5],
popupAnchor: [0, -8],
className: 'stop stop-major'
});

// Custom icons
this.agencyMinorStopIcon = L.divIcon({
iconSize: [10, 10],
iconAnchor: [5, 5],
popupAnchor: [5, 5],
popupAnchor: [0, -8],
className: 'stop stop-minor'
});

this.selectedStopIcon = L.divIcon({
iconSize: [8, 8],
iconAnchor: [4, 4],
popupAnchor: [4, 4],
popupAnchor: [0, -8],
className: 'stop stop-selected'
});

Expand Down

0 comments on commit 701639e

Please sign in to comment.