diff options
author | luxagraf <sng@luxagraf.net> | 2011-05-09 16:22:25 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2011-05-09 16:22:25 -0400 |
commit | 5bb96d4c2c8b42474953ca29d2422b3be60da25b (patch) | |
tree | 959adb3e57c0baf54f56253e5347f45960439b97 /templates/bin/map_sidebar.html | |
parent | 261b92d06de346cd5a6d18b9bdf38ee7084960ab (diff) |
updated styles and templates for revamped design
Diffstat (limited to 'templates/bin/map_sidebar.html')
-rw-r--r-- | templates/bin/map_sidebar.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/bin/map_sidebar.html b/templates/bin/map_sidebar.html index 18dd118..635c522 100644 --- a/templates/bin/map_sidebar.html +++ b/templates/bin/map_sidebar.html @@ -4,7 +4,7 @@ <h4>Trips</h4> <ul> {% for route in route_list %} - <li><a onclick="showRoute('{{route.template_var_name}}', {{route.zoom}}, '{{route.geometry.centroid.y}}','{{route.geometry.centroid.x}}');" href="#">{{route.name}}</a></li> + <li><a onclick="showRoute('{{route.template_var_name}}', {{route.zoom}}, '{{route.geometry.centroid.y}}','{{route.geometry.centroid.x}}');" href="#" title="show {{route.name}} on map">{{route.name}}</a></li> {% endfor %} </ul> <h4>Regions</h4> @@ -16,7 +16,7 @@ <h4>Countries</h4> <ul> - <li><a onclick="focusCountry(19.311143,2.460938,2);" href="#">All</a></li> + <li><a onclick="focusCountry(19.311143,2.460938,2);" href="#" title="view all countries">All</a></li> {%for country in country_list %} <li><a href="#{{country.slug}}" onclick="focusCountry({{country.lat}}, {{country.lon}}, {{country.zoom_level}});" title="See all writing from {{country.name|title}}">{{country.name}}</a></li> {% endfor %} |