Changeset 3 in bookmarks for trunk/bookmark.tt
- Timestamp:
- 03/02/12 20:51:06 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bookmark.tt
r2 r3 22 22 <a href="[% uri %]" target="_blank">[% title or uri %]</a> 23 23 [% IF exists %] 24 <p >[% created %]</p>24 <p class="timestamps">[% created %]</p> 25 25 [% IF tags.size %] 26 <p >Tagged as:26 <p class="tags">Tagged as: 27 27 [% FOREACH tag IN tags %] 28 <a href=" ?tag=[% tag %]">[% tag %]</a>28 <a href=".?tag=[% tag %]" class="tag" target="_blank" onclick="if (opener && !opener.closed) { opener.location = this.href; return false; }">[% tag %]</a> 29 29 [% END %] 30 30 </p> … … 64 64 window.onload = function() { 65 65 if (document.location.hash == '#updated') { 66 opener.location.reload(); 66 if (opener) { 67 opener.location.reload(); 68 } 67 69 } 68 70 };
Note: See TracChangeset
for help on using the changeset viewer.