Skip to content

Commit 3d2d9e2

Browse files
committed
Changed the construction of element IDs that could trigger ad-blockers to avoid the problem.
- Legacy-Id: 15831
1 parent c8e15fa commit 3d2d9e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/templates/nomcom/requirements.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ <h2>Desired expertise</h2>
1818
<ul class="nav nav-tabs" role="tablist">
1919
{% for position in positions %}
2020
<li {% if forloop.first %}class="active"{% endif %}>
21-
<a data-toggle="tab" role="tab" href="#{{ position.name|slugify }}">{{ position.name }}</a>
21+
<a data-toggle="tab" role="tab" href="#pos-{{ position.name|slugify }}">{{ position.name }}</a>
2222
</li>
2323
{% endfor %}
2424
</ul>
2525

2626
<div class="tab-content">
2727
{% for position in positions %}
28-
<div class="tab-pane {% if forloop.first %}active{% endif %}" id="{{ position.name|slugify }}">
28+
<div class="tab-pane {% if forloop.first %}active{% endif %}" id="pos-{{ position.name|slugify }}">
2929
{{ position.get_requirement|safe }}
3030
</div>
3131
{% endfor %}

0 commit comments

Comments
 (0)