Skip to content

Commit 5df9e1d

Browse files
Changed dictionary key name from chapterUrl to chapterURL.
1 parent 7b4534d commit 5df9e1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
{% for chapter in site.chapters %}
1515
{"chapterId": "{{ chapter.chapter_id }}",
1616
"chapterName": "{{ chapter.chapter_name }}",
17-
"chapterUrl": "{{ chapter.chapter_meetup_link }}",
17+
"chapterURL": "{{ chapter.chapter_meetup_link }}",
1818
"chapterLocation": "{{ chapter.chapter_location }}",
1919
"lat": {{ chapter.lat }},
2020
"lng": {{ chapter.lng }}},
@@ -157,7 +157,7 @@ <h2 class="chapters__title">Chapters</h2>
157157
// desc += '<br/>With the support of:<br/>';
158158
// desc += '<a href="' + chapters[i]['sponsor_url'] + '"><img style="width: 120px;" alt="" src="assets/images/sponsors/' + chapters[i]['sponsor_image'] + '"/></a><br/>';
159159
// }
160-
desc += '<br/><a style="color: #800000;" href="' + chapters[i]['chapterUrl'] + '">Go to event page</a><br/>';
160+
desc += '<br/><a style="color: #800000;" href="' + chapters[i]['chapterURL'] + '">Go to event page</a><br/>';
161161
var marker = new google.maps.Marker({
162162
title: chapters[i]["chapterName"],
163163
html: desc,

0 commit comments

Comments
 (0)