aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2012-08-15 11:48:10 +0000
committerplegall <plg@piwigo.org>2012-08-15 11:48:10 +0000
commitb9c82b0186fdb9cd71c9737d1f71d3f3e8595bf9 (patch)
tree67a0533914a06e60808608a0e4f3a8bde13efebc
parent448c7297d6a8b4333b0770ea9870fa58dde78054 (diff)
merge r17573 from branch 2.4 to trunk
bug 2724 fixed: tooltip on thumbnails is back on photos sort order manager git-svn-id: http://piwigo.org/svn/trunk@17574 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}