Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(486)

Unified Diff: MoinMoin/themes/foobar/templates/layout.html

Issue 123150043: Fixed quicklinks overflowing the divs and also their tooltips (Closed)
Patch Set: Added safe filter to url and displayed only url in tooltip in case title is not there Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: MoinMoin/themes/foobar/templates/layout.html
===================================================================
--- a/MoinMoin/themes/foobar/templates/layout.html
+++ b/MoinMoin/themes/foobar/templates/layout.html
@@ -28,7 +28,7 @@
<ul>
{% for cls, url, text, title in navibar_items %}
<li class="{{ cls }}">
- <a href="{{ url }}" {% if title %}title="{{ title }}"{% endif %}>{{ text }}</a>
+ <a href="{{ url }}" {% if title %}title="{{ title }} : {{ url|safe }}"{% else %}"{{ url|safe }}"{% endif %}>{{ text }}</a>
</li>
{% endfor %}
</ul>
« MoinMoin/themes/basic/templates/layout.html ('K') | « MoinMoin/themes/basic/templates/layout.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b