Bug 3093 add syspref to turn off multiholds button
[koha.git] / koha-tmpl / opac-tmpl / prog / en / js / bakertaylorimages.js
1 // http://www.oreillynet.com/pub/a/javascript/2003/10/21/amazonhacks.html
2 function bt_verify_images() {
3         $("img").each(function(i){
4                if (this.src.indexOf('btol.com') >= 0) {
5             h = this.height;
6             if (h == 20) {
7                                 $(this).before("<span class=\"no-image\" style=\"margin-bottom:5px;width:80px;\">"+NO_BAKERTAYLOR_IMAGE+"</span>");
8             }
9                 }
10                 });
11                 }