Skip to content

Latest commit

 

History

History
64 lines (57 loc) · 2.03 KB

regional-table.md

File metadata and controls

64 lines (57 loc) · 2.03 KB
title published
Regional Segment Integrations
false

{% assign source = site.data.regional.regions %}

All {% for category in source %} {{category.category | capitalize}} {% endfor %}
{% for category in source %} {% for integration in category.integrations %} {% endfor %} {% endfor %}
Integration US West Support EU West Support
{{category.category}}
{{integration.name}} {% if integration.us_west %}✅{% else %}⬜️{% endif %} {% if integration.eu_west %}✅{% else %}⬜️{% endif %}
<script> function searchFilter() { var input, filter, table, tr, td, i, txtValue; input = document.getElementById("filterInput"); filter = input.value.toUpperCase(); table = document.getElementById("settingsTable"); tr = document.getElementsByClassName("settingRow"); for (i = 0; i < tr.length; i++) { td = tr[i].getElementsByTagName("td")[0]; if (td) { txtValue = td.textContent || td.innerText; if (txtValue.toUpperCase().indexOf(filter) > -1) { tr[i].style.display = ""; } else { tr[i].style.display = "none" } } } } </script>