diff options
author | Friendika <info@friendika.com> | 2011-04-11 16:00:13 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-11 16:00:13 -0700 |
commit | 68731a2c39ea0b235e5f715315243feda18b8d1c (patch) | |
tree | 23c235d1a2044b96a8ba5ed4ba46327ae2320ff2 | |
parent | ff15ea099310bab5cdcaa724274f3ef22301fcb4 (diff) | |
download | volse-hubzilla-68731a2c39ea0b235e5f715315243feda18b8d1c.tar.gz volse-hubzilla-68731a2c39ea0b235e5f715315243feda18b8d1c.tar.bz2 volse-hubzilla-68731a2c39ea0b235e5f715315243feda18b8d1c.zip |
photo menu added to wallwall template
-rw-r--r-- | view/wallwall_item.tpl | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/view/wallwall_item.tpl b/view/wallwall_item.tpl index 640d3f94e..236c952ab 100644 --- a/view/wallwall_item.tpl +++ b/view/wallwall_item.tpl @@ -6,9 +6,18 @@ <img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" height="80" width="80" alt="$owner_name" /></a> </div> <div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="$wall" /></div> - <div class="wall-item-photo-wrapper wwfrom" id="wall-item-photo-wrapper-$id" > + <div class="wall-item-photo-wrapper wwfrom" id="wall-item-photo-wrapper-$id" + onmouseover="if (typeof t$id != 'undefined') clearTimeout(t$id); openMenu('wall-item-photo-menu-button-$id')" + onmouseout="t$id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$id\'); closeMenu(\'wall-item-photo-menu-$id\');',200)"> <a href="$profile_url" title="$linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$id"> <img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" height="80" width="80" alt="$name" /></a> + <span onclick="openClose('wall-item-photo-menu-$id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$id">menu</span> + <div class="wall-item-photo-menu" id="wall-item-photo-menu-$id"> + <ul> + $item_photo_menu + </ul> + </div> + </div> <div class="wall-item-photo-end"></div> <div class="wall-item-wrapper" id="wall-item-wrapper-$id" > |