Use 'BLACK RIGHT-POINTING TRIANGLE' for the 'selected' indicator

(imported from commit 713b24521f080e7772991d2d9808324ef6219ac5)
This commit is contained in:
Keegan McAllister 2012-08-29 15:14:55 -04:00
parent 738ed46941
commit 6832fa9489
2 changed files with 2 additions and 2 deletions

View File

@ -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">&gt;{% else %}<p>{% endif %}</p></td>
<td class="pointer">{% if user_profile.pointer == zephyr.id %}<p id="selected">&#x25b6;{% 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>

View File

@ -33,7 +33,7 @@ $.ajaxSetup({
}
});
selected_tag = '<p id="selected">&gt;</p>'
selected_tag = '<p id="selected">&#x25b6;</p>'
$(document).keydown(function(event) {
if (event.keyCode == 38 || event.keyCode == 40) { // down or up arrow