aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2012-08-15 11:45:46 +0000
committerplegall <plg@piwigo.org>2012-08-15 11:45:46 +0000
commit4bcacb8c698d35ddf3603ccfbdec12aec3860a5b (patch)
tree8b9433eaaa89e1d18c32a3c1561f3e88e4c2e974
parente63f2b97668af6ca8e30ac1167da878891d981b2 (diff)
bug 2724 fixed: tooltip on thumbnails is back on photos sort order manager
git-svn-id: http://piwigo.org/svn/branches/2.4@17573 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/themes/default/template/element_set_ranks.tpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/themes/default/template/element_set_ranks.tpl b/admin/themes/default/template/element_set_ranks.tpl
index deeef6d32..be5019e24 100644
--- a/admin/themes/default/template/element_set_ranks.tpl
+++ b/admin/themes/default/template/element_set_ranks.tpl
@@ -29,7 +29,7 @@ jQuery(document).ready(function() {
checkOrderOptions();
});
jQuery(document).ready(function() {
-jQuery('.clipwrapper').tipTip({
+jQuery('.thumbnail').tipTip({
'delay' : 0,
'fadeIn' : 200,
'fadeOut' : 200
@@ -51,7 +51,7 @@ jQuery('.clipwrapper').tipTip({
<ul class="thumbnails">
{foreach from=$thumbnails item=thumbnail}
<li class="rank-of-image">
- <img src="{$thumbnail.TN_SRC}" class="thumbnail" alt="{$thumbnail.NAME|@replace:'"':' '}" style="width:{$thumbnail.SIZE[0]}px; height:{$thumbnail.SIZE[1]}px; ">
+ <img src="{$thumbnail.TN_SRC}" class="thumbnail" alt="{$thumbnail.NAME|@replace:'"':' '}" title="{$thumbnail.NAME|@replace:'"':' '}" style="width:{$thumbnail.SIZE[0]}px; height:{$thumbnail.SIZE[1]}px; ">
<input type="text" name="rank_of_image[{$thumbnail.ID}]" value="{$thumbnail.RANK}" style="display:none">
</li>
{/foreach}