Lines 314-322
function verify_images() {
Link Here
|
314 |
var w = this.width; |
314 |
var w = this.width; |
315 |
var h = this.height; |
315 |
var h = this.height; |
316 |
if ((w == 1) || (h == 1)) { |
316 |
if ((w == 1) || (h == 1)) { |
317 |
$(this).parent().html('<span class="no-image">No cover image available</span>'); |
317 |
$(this).parent().html('<span class="no-image">'+__("No cover image available")+'</span>'); |
318 |
} else if ((this.complete != null) && (!this.complete)) { |
318 |
} else if ((this.complete != null) && (!this.complete)) { |
319 |
$(this).parent().html('<span class="no-image">No cover image available</span>'); |
319 |
$(this).parent().html('<span class="no-image">'+__("No cover image available")+'</span>'); |
320 |
} |
320 |
} |
321 |
} |
321 |
} |
322 |
}); |
322 |
}); |
323 |
- |
|
|