Undoing change committed in r12789. The root problem was using jQuery.remove() in Transmission.refilter() when we needed to use jQuery.detach().

This commit is contained in:
Jordan Lee
2011-08-31 21:18:31 +00:00
parent d6c5817ffe
commit a0d456ca9c
2 changed files with 3 additions and 3 deletions

View File

@@ -125,7 +125,7 @@
setTimeout( function() { // Delay for Mozilla
$(document).click( function() {
menu.unbind('click');
$(document).unbind('click');
hide();
return false;
});
@@ -153,4 +153,4 @@
$(function() {
$('div.contextMenu').hide();
});
});