Add missing semicolons

Also trim trailing whitespaces along the way.
This commit is contained in:
Chocobo1 2020-09-17 02:07:12 +08:00
parent ff82063520
commit ccdc3b201b
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
4 changed files with 24 additions and 24 deletions

View file

@ -1305,9 +1305,9 @@ window.qBittorrent.DynamicTable = (function() {
return false;
break;
default:
const tracker = trackerList.get(trackerHashInt)
const tracker = trackerList.get(trackerHashInt);
if (tracker && !tracker.torrents.includes(row['full_data'].rowId))
return false
return false;
break;
}
@ -2480,7 +2480,7 @@ window.qBittorrent.DynamicTable = (function() {
tr.removeClass('articleTableFeed');
tr.addClass('articleTableArticle');
}
const tds = tr.getElements('td');
for (let i = 0; i < this.columns.length; ++i) {
if (data.hasOwnProperty(this.columns[i].dataProperties[0]))
@ -2489,7 +2489,7 @@ window.qBittorrent.DynamicTable = (function() {
row['data'] = {};
}
});
return exports();
})();