mirror of
https://github.com/transmission/transmission
synced 2024-12-24 00:34:04 +00:00
(trunk web) iPhone file inspector improvements
This commit is contained in:
parent
f8ecd3ad7a
commit
317a9b3366
2 changed files with 14 additions and 13 deletions
|
@ -752,6 +752,7 @@ TorrentFile.prototype = {
|
||||||
setWanted: function(wanted) {
|
setWanted: function(wanted) {
|
||||||
this._dirty = true;
|
this._dirty = true;
|
||||||
this._wanted = wanted;
|
this._wanted = wanted;
|
||||||
|
if(!iPhone)
|
||||||
this.element().toggleClass( 'skip', !wanted );
|
this.element().toggleClass( 'skip', !wanted );
|
||||||
var command = wanted ? 'files-wanted' : 'files-unwanted';
|
var command = wanted ? 'files-wanted' : 'files-unwanted';
|
||||||
this._torrent._controller.changeFileCommand(command, this._torrent, this);
|
this._torrent._controller.changeFileCommand(command, this._torrent, this);
|
||||||
|
@ -812,9 +813,18 @@ TorrentFile.prototype = {
|
||||||
}
|
}
|
||||||
|
|
||||||
var prio;
|
var prio;
|
||||||
|
if(iPhone)
|
||||||
|
{
|
||||||
|
if( x < 8 ) prio = -1;
|
||||||
|
else if( x < 27 ) prio = 0;
|
||||||
|
else prio = 1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
if( x < 12 ) prio = -1;
|
if( x < 12 ) prio = -1;
|
||||||
else if( x < 23 ) prio = 0;
|
else if( x < 23 ) prio = 0;
|
||||||
else prio = 1;
|
else prio = 1;
|
||||||
|
}
|
||||||
this.setPriority( prio );
|
this.setPriority( prio );
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -722,21 +722,12 @@ div.file_priority_control {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
div.file_priority_control.normal {
|
div.file_priority_control.normal {
|
||||||
background-position: left top;
|
|
||||||
}
|
|
||||||
div.file_priority_control.normal:hover {
|
|
||||||
background-position: right top;
|
background-position: right top;
|
||||||
}
|
}
|
||||||
div.file_priority_control.high {
|
div.file_priority_control.high {
|
||||||
background-position: left -19px;
|
|
||||||
}
|
|
||||||
div.file_priority_control.high:hover {
|
|
||||||
background-position: right -19px;
|
background-position: right -19px;
|
||||||
}
|
}
|
||||||
div.file_priority_control.low {
|
div.file_priority_control.low {
|
||||||
background-position: left -38px;
|
|
||||||
}
|
|
||||||
div.file_priority_control.low:hover {
|
|
||||||
background-position: right -38px;
|
background-position: right -38px;
|
||||||
}
|
}
|
||||||
ul.single_file li.inspector_torrent_file_list_entry>.file_priority_control, li.inspector_torrent_file_list_entry.complete div.file_priority_control {
|
ul.single_file li.inspector_torrent_file_list_entry>.file_priority_control, li.inspector_torrent_file_list_entry.complete div.file_priority_control {
|
||||||
|
|
Loading…
Reference in a new issue