mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 17:23:07 -07:00
WebUI: Use CSS to alternate row colors in transferlist
Keep the old code for IE < 9, the majority of the browsers shouldn't need it. Also, keep the CSS code in one place.
This commit is contained in:
parent
8a4028fc84
commit
0b6d5c662a
3 changed files with 7 additions and 9 deletions
|
@ -63,6 +63,9 @@ var dynamicTable = new Class({
|
|||
},
|
||||
|
||||
altRow : function () {
|
||||
if (!MUI.ieLegacySupport)
|
||||
return;
|
||||
|
||||
var trs = this.table.getElements('tr');
|
||||
trs.each(function (el, i) {
|
||||
if (i % 2) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue