This repository has been archived on 2019-05-05. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
458 B
HTML
Raw Normal View History

2016-04-12 17:33:37 -06:00
<div class="scrollable-box">
<div class="h4" id="place-name" style="max-width: 90%;"></div>
<div id="team-label"></div>
2016-04-12 17:33:37 -06:00
</div>
<script>
function loadPlace(feature) {
$("#place-name").text(feature.properties.name);
$("#team-label").text(getTeamNameFromId(feature.properties.gameinfo.teamid));
$("#team-label").css("color", "#" + getTeamColorFromId(feature.properties.gameinfo.teamid));
2016-04-12 17:33:37 -06:00
}
</script>