I hope this is the right place for it, don't shoot me if it's not
First of all, I'd like to say: great job on Calibre. It's an awesome piece of software (WAY better than what Sony bundled along with my PRS-600), and the content server is a neat idea. I did notice an easily solved bug in IE though (well, two actually, but haven't solved the second one): in gui.js, around line 250, this.style.backGroundcolor = "inherit" - this property is unsupported in all versions of IE as far as I know.
Something that seems to work a bit better in IE (as well as Chrome and FF as far as I could test):
Code:
$('table#book_list thead tr td').mouseover(function() {
this.style.oldBackgroundColor = this.style.backgroundColor;
this.style.backgroundColor = "#fff2a8";
});
$('table#book_list thead tr td').mouseout(function() {
this.style.backgroundColor = this.style.oldBackgroundColor;
});
There's also a nastier bug preventing the covers from loading in IE, still looking into that one..