(trunk web) in tr.refilter(), instead of calling the expensive tr.getSelectedRows(), use a cheaper jQuery equivalent.

This commit is contained in:
Jordan Lee
2011-08-30 21:27:30 +00:00
parent c44ce249d2
commit 0c221893d3
2 changed files with 9 additions and 16 deletions

View File

@@ -345,18 +345,16 @@ TorrentRendererCompact.prototype =
*****
****/
function TorrentRow(view, controller, torrent, selected)
function TorrentRow(view, controller, torrent)
{
this.initialize(view, controller, torrent, selected);
this.initialize(view, controller, torrent);
}
TorrentRow.prototype =
{
initialize: function(view, controller, torrent, selected) {
initialize: function(view, controller, torrent) {
this._view = view;
this._element = view.createRow();
this.setTorrent(controller, torrent);
if (selected)
this.setSelected(selected);
this.render(controller);
},