Fix map icons staying "alerted" after marking delivered
This commit is contained in:
parent
3962a56db8
commit
b21140de11
@ -85,8 +85,9 @@ function leafletMap() {
|
|||||||
if (map.openedPanelIconID != null && map.openedPanelIconID == datai.id) {
|
if (map.openedPanelIconID != null && map.openedPanelIconID == datai.id) {
|
||||||
classes += " selected";
|
classes += " selected";
|
||||||
}
|
}
|
||||||
// Show different color highlight when nearby
|
// Show different color highlight when nearby and undelivered
|
||||||
if (packages[i].distance * 1 < getStorage("alertradius") * 1) {
|
if (packages[i].distance * 1 < getStorage("alertradius") * 1
|
||||||
|
&& getUndeliveredCount(packages[i]) > 0) {
|
||||||
classes += " alerted";
|
classes += " alerted";
|
||||||
}
|
}
|
||||||
var icon = L.icon({
|
var icon = L.icon({
|
||||||
|
@ -110,8 +110,9 @@ function mapboxMap() {
|
|||||||
if (map.openedPanelIconID != null && map.openedPanelIconID == datai.id) {
|
if (map.openedPanelIconID != null && map.openedPanelIconID == datai.id) {
|
||||||
el.className += " selected";
|
el.className += " selected";
|
||||||
}
|
}
|
||||||
// Show different color highlight when nearby
|
// Show different color highlight when nearby and undelivered
|
||||||
if (packages[i].distance * 1 < getStorage("alertradius") * 1) {
|
if (packages[i].distance * 1 < getStorage("alertradius") * 1
|
||||||
|
&& getUndeliveredCount(packages[i]) > 0) {
|
||||||
el.className += " alerted";
|
el.className += " alerted";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user