mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-27 08:02:51 +02:00
Remove check for undefined, reverted dist/* changes
This commit is contained in:
Vendored
-5
@@ -604,11 +604,6 @@ L.MarkerClusterGroup = L.FeatureGroup.extend({
|
||||
} else if (this.options.zoomToBoundsOnClick) {
|
||||
e.layer.zoomToBounds();
|
||||
}
|
||||
|
||||
// Focus the map again for keyboard users.
|
||||
if (typeof e.originalEvent.keyCode !== 'undefined' && e.originalEvent.keyCode === 13) {
|
||||
map._container.focus();
|
||||
}
|
||||
},
|
||||
|
||||
_showCoverage: function (e) {
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -601,7 +601,7 @@ L.MarkerClusterGroup = L.FeatureGroup.extend({
|
||||
}
|
||||
|
||||
// Focus the map again for keyboard users.
|
||||
if (typeof e.originalEvent.keyCode !== 'undefined' && e.originalEvent.keyCode === 13) {
|
||||
if (e.originalEvent.keyCode === 13) {
|
||||
map._container.focus();
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user