- Fix priority column data being displayed when adding a new torrent and when priority column is hidden (queueing system disabled) is disabled (Web UI)

This commit is contained in:
Christophe Dumez 2009-12-06 14:26:50 +00:00
parent 83da56b0eb
commit bce575ee68

View file

@ -236,6 +236,11 @@ var dynamicTable = new Class ({
if(i==0) {
td.adopt(new Element('img', {'src':row[i], 'class': 'statusIcon'}));
} else {
if(i==2) {
// Priority
if(this.priority_hidden)
td.addClass('invisible');
}
td.set('html', row[i]);
}
}