mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-03 11:08:28 +00:00
Code cleanup.
This commit is contained in:
@@ -62,7 +62,7 @@ function updateBar(data) {
|
||||
|
||||
function reportErrors(data) {
|
||||
"use strict";
|
||||
if (data.errors.length == 1) {
|
||||
if (data.errors.length === 1) {
|
||||
$('#import-status-error-intro').text(langImportSingleError);
|
||||
//'An error has occured during the import. The import can continue, however.'
|
||||
}
|
||||
@@ -93,7 +93,7 @@ function kickStartJob() {
|
||||
|
||||
function updateTimeout(data) {
|
||||
"use strict";
|
||||
if (data.stepsDone != stepCount) {
|
||||
if (data.stepsDone !== stepCount) {
|
||||
stepCount = data.stepsDone;
|
||||
currentLimit = 0;
|
||||
return;
|
||||
|
Reference in New Issue
Block a user