aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/templates
diff options
context:
space:
mode:
authorJef van Schendel <mail@jefvanschendel.nl>2012-03-05 19:21:59 +0100
committerJef van Schendel <mail@jefvanschendel.nl>2012-03-05 19:21:59 +0100
commit5cacba23958804211da0291fe8ba545ea98f2be5 (patch)
treee4c47e45796ff816eda0e8e16a3330ef64cacb3b /mediagoblin/templates
parentc898fa5acc25df01edcc56fdcf5d3d34ecc06deb (diff)
parent643278243c3e68efdee579e9b92dd8ab7355391f (diff)
downloadmediagoblin-5cacba23958804211da0291fe8ba545ea98f2be5.tar.lz
mediagoblin-5cacba23958804211da0291fe8ba545ea98f2be5.tar.xz
mediagoblin-5cacba23958804211da0291fe8ba545ea98f2be5.zip
Merge branch 'keyboard_nav'
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r--mediagoblin/templates/mediagoblin/user_pages/media.html2
-rw-r--r--mediagoblin/templates/mediagoblin/utils/prev_next.html4
2 files changed, 4 insertions, 2 deletions
diff --git a/mediagoblin/templates/mediagoblin/user_pages/media.html b/mediagoblin/templates/mediagoblin/user_pages/media.html
index d2503a4e..0b9bb808 100644
--- a/mediagoblin/templates/mediagoblin/user_pages/media.html
+++ b/mediagoblin/templates/mediagoblin/user_pages/media.html
@@ -27,6 +27,8 @@
href="{{ request.staticdirect('/extlib/leaflet/leaflet.ie.css') }}" /><![endif]-->
<script type="text/javascript"
src="{{ request.staticdirect('/js/comment_show.js') }}"></script>
+ <script type="text/javascript"
+ src="{{ request.staticdirect('/js/keyboard_navigation.js') }}"></script>
{% if app_config['geolocation_map_visible'] %}
<link rel="stylesheet"
diff --git a/mediagoblin/templates/mediagoblin/utils/prev_next.html b/mediagoblin/templates/mediagoblin/utils/prev_next.html
index d0cf3f8c..83d83ad6 100644
--- a/mediagoblin/templates/mediagoblin/utils/prev_next.html
+++ b/mediagoblin/templates/mediagoblin/utils/prev_next.html
@@ -34,12 +34,12 @@
{% endif %}
{# Likewise, this could be the very last media entry #}
{% if next_entry_url %}
- <a class="navigation_button" href="{{ next_entry_url }}">
+ <a class="navigation_button navigation_right" href="{{ next_entry_url }}">
{% trans %}older{% endtrans %} &rarr;
</a>
{% else %}
{# This is the last entry. display greyed-out 'next' image #}
- <p class="navigation_button">
+ <p class="navigation_button navigation_right">
{% trans %}older{% endtrans %} &rarr;
</p>
{% endif %}