Bug 7813: (follow-up) improvements for deleting local cover images
This patch: - displays a js alert if a problem occurred on deleting the image on the server. - adds a class for the new span (in order to avoid future problem, if someone adds a new span). - adds a title for the [X] link. - deal with the upload_local_cover_images permission (don't display the delete link if the logged in user does not have it). - changes the license version. Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com> I like the ehancements to the original patch and work as expected. Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Galen Charlton <gmc@esilibrary.com>
This commit is contained in:
parent
ab362b93a7
commit
1dc7d421bc
2 changed files with 20 additions and 16 deletions
|
@ -62,6 +62,9 @@ function verify_images() {
|
|||
$('#imagenumber-' + this.imagenumber).remove();
|
||||
}
|
||||
});
|
||||
},
|
||||
error: function(data) {
|
||||
alert(_("An error occurred on deleting this image"));
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -70,7 +73,7 @@ function verify_images() {
|
|||
$(document).ready(function() {
|
||||
$('#bibliodetails').tabs();
|
||||
$('#search-form').focus();
|
||||
$('.thumbnails > li > a > span').click(function() {
|
||||
$('.thumbnails > li > a > span.remove').click(function() {
|
||||
var result = confirm(_("Are you sure you want to delete this cover image?"));
|
||||
|
||||
if ( result == true ) {
|
||||
|
@ -728,8 +731,10 @@ function verify_images() {
|
|||
[% IF image %]
|
||||
<li id="imagenumber-[% image %]">
|
||||
<a class="thumbnail" href="/cgi-bin/koha/catalogue/imageviewer.pl?biblionumber=[% biblionumber %]&imagenumber=[% image %]">
|
||||
<img alt="" src="/cgi-bin/koha/catalogue/image.pl?thumbnail=1&imagenumber=[% image %]" />
|
||||
<span class="remove">×</span>
|
||||
<img alt="remove this image" src="/cgi-bin/koha/catalogue/image.pl?thumbnail=1&imagenumber=[% image %]" />
|
||||
[% IF CAN_user_tools_upload_local_cover_images %]
|
||||
<span class="remove" title="remove this image">×</span>
|
||||
[% END %]
|
||||
</a>
|
||||
</li>
|
||||
[% END %]
|
||||
|
|
|
@ -1,23 +1,22 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
# This file is part of Koha.
|
||||
#
|
||||
# Copyright 2013 Universidad Nacional de Cordoba
|
||||
# Tomas Cohen Arazi
|
||||
#
|
||||
# This file is part of Koha.
|
||||
# Koha is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Koha is free software; you can redistribute it and/or modify it under the
|
||||
# terms of the GNU General Public License as published by the Free Software
|
||||
# Foundation; either version 2 of the License, or (at your option) any later
|
||||
# version.
|
||||
#
|
||||
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
||||
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along
|
||||
# with Koha; if not, write to the Free Software Foundation, Inc.,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
# Koha is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Koha; if not, see <http://www.gnu.org/licenses>.
|
||||
|
||||
use Modern::Perl;
|
||||
|
||||
|
|
Loading…
Reference in a new issue