Thanks a lot! I tried the workaround, and now it seems to work excellently in Opera. Still the same problems in IE7 though, but that doesn't bother me as long as it works in Opera.
Just to clarify the workaround procedure to anyone interested:
Find the file transmission.js in your installation, on my NAS it was located under
/opt/share/transmission/web/javascript/transmission.js .
In this file, find the "showFilter" function, and replace it with the following:
Code: Select all
showFilter: function( ) {
var container_top;
try {
container_top = parseInt($('#torrent_container').position().top) + $('#torrent_filter_bar').height() + 1;
} catch (e) {
container_top = parseInt($('#torrent_container').css("top")) + $('#torrent_filter_bar').height() + 1;
}
$('#torrent_container').css('top', container_top + 'px');
$('#torrent_filter_bar').show();
this.setPref( Prefs._ShowFilter, true );
},
Also, a mandatory thank you to the developers for making an application that runs so smoothly even on a shitty 32MB memory NAS.