aboutsummaryrefslogtreecommitdiffstats
path: root/view/head.tpl
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-26 17:01:37 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-26 17:01:37 -0700
commit7a6665b5cfb35daf3cb6ad13db00a19e89f8c8b8 (patch)
tree4940d6403b78da48d144506ad628444bb36ccf46 /view/head.tpl
parent17808daf5e72f6ff22c182d334ab3651abda0302 (diff)
downloadvolse-hubzilla-7a6665b5cfb35daf3cb6ad13db00a19e89f8c8b8.tar.gz
volse-hubzilla-7a6665b5cfb35daf3cb6ad13db00a19e89f8c8b8.tar.bz2
volse-hubzilla-7a6665b5cfb35daf3cb6ad13db00a19e89f8c8b8.zip
item deletion and hover images
Diffstat (limited to 'view/head.tpl')
-rw-r--r--view/head.tpl18
1 files changed, 13 insertions, 5 deletions
diff --git a/view/head.tpl b/view/head.tpl
index 81ce1287f..2a6506da9 100644
--- a/view/head.tpl
+++ b/view/head.tpl
@@ -20,11 +20,6 @@
msie = $.browser.msie ;
NavUpdate();
-// $('.wall-item-delete-icon').hover(function() {
-// $(this).attr("src",$(this).attr("src").replace('hide',''));
-// },function() {
-// $(this).attr("src",$(this).attr("src").replace('','hide'));
-// });
});
@@ -79,5 +74,18 @@
return confirm("Delete this item?");
}
+ function imgbright(node) {
+ $(node).attr("src",$(node).attr("src").replace('hide','show'));
+ }
+
+ function imgdull(node) {
+ $(node).attr("src",$(node).attr("src").replace('show','hide'));
+ }
+
+
+
+
+
+
</script>