|
Lines 32-37
KOHA.coce = {
Link Here
|
| 32 |
$("[id^=coce-thumbnail]."+id).each(function() { |
32 |
$("[id^=coce-thumbnail]."+id).each(function() { |
| 33 |
var img = document.createElement("img"); |
33 |
var img = document.createElement("img"); |
| 34 |
img.src = url; |
34 |
img.src = url; |
|
|
35 |
img.classList.add("thumbnail"); |
| 35 |
img.title = url; //FIXME: to delete |
36 |
img.title = url; //FIXME: to delete |
| 36 |
$(this).html(img); |
37 |
$(this).html(img); |
| 37 |
}); |
38 |
}); |
| 38 |
- |
|
|