plugin 'done links': changed link highlight colour to that of the link faction. more subtle, but works better on some map colours, and the faction is often very important

This commit is contained in:
Jon Atkins 2014-11-09 00:29:31 +00:00
parent 199a9f15dd
commit 53a6dee20b

View File

@ -85,11 +85,11 @@ window.plugin.doneLinks.testLink = function (link) {
window.plugin.doneLinks.showLink = function(link) {
var poly = L.geodesicPolyline(link.getLatLngs(), {
color: '#FB0',
opacity: 0.9,
color: COLORS[link.options.team],
opacity: 0.8,
weight: 6,
clickable: false,
dashArray: [8,12],
dashArray: [6,12],
guid: link.options.guid
});