diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-08-23 21:03:03 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-08-23 21:03:03 +0000 |
commit | 63afc602551975c9082e2a84102d08433c08597d (patch) | |
tree | 11758a196d0ff0fc7f00a0e3a283f0e7b852abf1 /views/default/js | |
parent | 9355ce159bf812d8fa77994976eda4861d8033ea (diff) | |
download | elgg-63afc602551975c9082e2a84102d08433c08597d.tar.gz elgg-63afc602551975c9082e2a84102d08433c08597d.tar.bz2 |
changing cursor for tagging now
Diffstat (limited to 'views/default/js')
-rw-r--r-- | views/default/js/tagging.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/views/default/js/tagging.php b/views/default/js/tagging.php index 8e384bec8..59214db9b 100644 --- a/views/default/js/tagging.php +++ b/views/default/js/tagging.php @@ -160,6 +160,8 @@ onSelectStart: hideTagMenu
}
);
+
+ $('img#tidypics_image').css({"cursor" : "crosshair"});
}
function stopTagging()
@@ -182,6 +184,8 @@ $('.tidypics_tag').hide();
}
);
+
+ $('img#tidypics_image').css({"cursor" : "pointer"});
}
function showTagMenu(oObject, oCoordenates)
|