Qobuz importer: replace zoom image link by the maximun size image link

_600 -> _max
This commit is contained in:
Laurent Monin 2015-07-16 12:00:54 +02:00
parent a77f753475
commit 4ac3b4f414

View file

@ -156,4 +156,8 @@ $(document).ready(function() {
LOGGER.error("AJAX error thrown: ", errorThrown);
}
});
// replace image zoom link by the maximum size image link
$("#product-cover-link").attr("href", $("#product-cover-link").attr("href").replace('_600', '_max'));
$("#product-cover-link").attr("title", $("#product-cover-link").attr("title") + ' (Qobuz importer: hires image)');
});