jekyll-leaflet-mze 0.4.4 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/jekyll-leaflet-mze/leaflet-map.js +2 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: afa2b7ee40ab71b16e0baced796b0051d52aeddc6b4ede477f147e0190cccd8e
|
4
|
+
data.tar.gz: 196b270b1ce18a235888b811caaa640071fd6e4cf3aad9e46caec7e8c48fef5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3bf5b9151551c90c1493adda122a27a6a5682def7920f6ec9663185fcf97f95ee2a38053b60f57195ec0346cd504ad73afb4f84308532b8b9e660e44fb50a82
|
7
|
+
data.tar.gz: 455a074c8ef9422391fbe99e26b2486f3544f0af0cbbad766c89337294f25ca9803babd57cae0acbe53b92396ef59c6cd710553600ffb9785592bec2e7174f65
|
@@ -47,7 +47,6 @@
|
|
47
47
|
|
48
48
|
function _getIcon() {
|
49
49
|
// NOTE: retrieved from server, not present in the resources of this plugin
|
50
|
-
// var iconUrl = "/assets/images/music-map/music-icon.png"
|
51
50
|
var defaultIconSize = [48,48];
|
52
51
|
if("iconPath" in tagInputArg) {
|
53
52
|
var iconSizePixels = defaultIconSize;
|
@@ -104,10 +103,10 @@
|
|
104
103
|
}
|
105
104
|
props.title = "";
|
106
105
|
if('city' in leafletValue) {
|
107
|
-
props.title
|
106
|
+
props.title += leafletValue.city;
|
108
107
|
}
|
109
108
|
if('popupContent' in leafletValue) {
|
110
|
-
props.title
|
109
|
+
props.title += leafletValue.popupContent;
|
111
110
|
}
|
112
111
|
return props;
|
113
112
|
}
|