mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
PHRAS-3111
This commit is contained in:
@@ -42,10 +42,19 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/template" id="download_finish_tpl">
|
<script type="text/template" id="download_finish_tpl">
|
||||||
<b title="<% _.each(reasons, function(reason) { %>*<%= reason %><% }); %>"><%= heading %></b>
|
<b class="show_more_message" ><%= heading %></b>
|
||||||
<br />
|
<br />
|
||||||
<% _.each(reasons, function(reason) { %>
|
<% _.each(reasons, function(reason) { %>
|
||||||
<div class="hidden">*<%= reason %></div>
|
<b class="hidden alert alert-error more-warning" role="alert" style="position: absolute">*<%= reason %></b>
|
||||||
<% }); %>
|
<% }); %>
|
||||||
</script>
|
</script>
|
||||||
|
<script>
|
||||||
|
$(document).on('mouseover','.show_more_message', function (e) {
|
||||||
|
$(this).parent().find('.more-warning').removeClass('hidden')
|
||||||
|
})
|
||||||
|
$(document).on('mouseout','.show_more_message',function (e) {
|
||||||
|
$(this).parent().find('.more-warning').addClass('hidden')
|
||||||
|
})
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user