mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-23 03:03:31 +01:00
Add missing semicolons.
This commit is contained in:
@@ -146,7 +146,7 @@ var Download = Class("Download", {
|
||||
},
|
||||
|
||||
_compare: {
|
||||
active: (a, b) => a.active - b.active,
|
||||
active: (a, b) => a.active - b.active,
|
||||
complete: (a, b) => a.percentComplete - b.percentComplete,
|
||||
date: (a, b) => a.startTime - b.startTime,
|
||||
filename: (a, b) => String.localeCompare(a.targetFile.leafName, b.targetFile.leafName),
|
||||
@@ -388,7 +388,7 @@ var DownloadList = Class("DownloadList",
|
||||
|
||||
onDownloadChanged: function onDownloadChanged(download) {
|
||||
if (this.downloads.has(download)) {
|
||||
download = this.downloads.get(download)
|
||||
download = this.downloads.get(download);
|
||||
|
||||
download.updateStatus();
|
||||
download.updateProgress();
|
||||
|
||||
Reference in New Issue
Block a user