We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 445f98d commit 6127274Copy full SHA for 6127274
1 file changed
ietf/templates/iesg/discusses.html
@@ -49,7 +49,7 @@ <h1>IESG discuss positions</h1>
49
</tr>
50
</thead>
51
52
- <tbody>
+ <tbody id="doclist">
53
{% for doc in docs %}
54
<tr class="{% if doc.by_me %}byme{% endif %} {% if doc.for_me %}forme{% endif %}">
55
<td>
@@ -83,10 +83,10 @@ <h1>IESG discuss positions</h1>
83
$(".discuss").click(function () {
84
var x = $(this).find("input").val();
85
if (x === "all") {
86
- $("tbody tr").removeClass("hidden");
+ $("#doclist>tr").removeClass("hidden");
87
} else {
88
- $("tbody tr." + x).removeClass("hidden");
89
- $("tbody tr:not(." + x + ")").addClass("hidden");
+ $("#doclist>tr." + x).removeClass("hidden");
+ $("#doclist>tr:not(." + x + ")").addClass("hidden");
90
}
91
});
92
</script>
0 commit comments