mirror of https://github.com/zulip/zulip.git
Use 'BLACK RIGHT-POINTING TRIANGLE' for the 'selected' indicator
(imported from commit 713b24521f080e7772991d2d9808324ef6219ac5)
This commit is contained in:
parent
738ed46941
commit
6832fa9489
|
@ -13,7 +13,7 @@
|
|||
<table id="table">
|
||||
{% for zephyr in zephyrs %}
|
||||
<tr id={{ zephyr.id }}>
|
||||
<td class="pointer">{% if user_profile.pointer == zephyr.id %}<p id="selected">>{% else %}<p>{% endif %}</p></td>
|
||||
<td class="pointer">{% if user_profile.pointer == zephyr.id %}<p id="selected">▶{% else %}<p>{% endif %}</p></td>
|
||||
<td class="zephyr">
|
||||
<p><span onclick="narrow('{{ zephyr.display_recipient }}', '{{ zephyr.id }}')" class="label {% if zephyr.recipient.type == 'class' %}zephyr_class{% else %}zephyr_personal_recipient{% endif %}">{{ zephyr.display_recipient }}</span>
|
||||
<span onclick="narrow_instance('{{ zephyr.display_recipient }}', '{{ zephyr.instance }}', '{{ zephyr.id }}')" class="label zephyr_instance">{{ zephyr.instance }}</span>
|
||||
|
|
|
@ -33,7 +33,7 @@ $.ajaxSetup({
|
|||
}
|
||||
});
|
||||
|
||||
selected_tag = '<p id="selected">></p>'
|
||||
selected_tag = '<p id="selected">▶</p>'
|
||||
|
||||
$(document).keydown(function(event) {
|
||||
if (event.keyCode == 38 || event.keyCode == 40) { // down or up arrow
|
||||
|
|
Loading…
Reference in New Issue