summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html
index e30e1e6..f54450d 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -8,6 +8,7 @@
<script type="text/javascript"><!--
var media_path = '{{ media_path }}';
// --></script>
+ <script src="{{ media_path }}base.js"></script>
{% block extra_head %}{{extra_head|safe}}{% endblock %}
</head>
@@ -15,7 +16,7 @@
<div id="topbar">
<ul id='action'>
{% for action in actions %}
- <li{% ifequal action.id action_selected %} id='selected'{% endifequal %}><a href='/{{ action.path }}'>{{ action.label }}</a></li>
+ <li{% ifequal action.id action_selected %} id='selected'{% endifequal %}><a href='/{{ action.path }}' onclick='saveExtent();'>{{ action.label }}</a></li>
{% endfor %}
</ul>
</div>