From 5812beedc351a6e50e49f1abc0128c3f8f7ea1b7 Mon Sep 17 00:00:00 2001 From: kovacsv Date: Thu, 22 Dec 2016 09:57:45 +0100 Subject: [PATCH] Fix jshint errors. --- website/include/importerapp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/include/importerapp.js b/website/include/importerapp.js index 7bac298..ccb4422 100644 --- a/website/include/importerapp.js +++ b/website/include/importerapp.js @@ -58,7 +58,7 @@ ImporterApp.prototype.Init = function () var hasHashModel = false; if (!testMode) { window.onhashchange = this.LoadFilesFromHash.bind (this); - hasHashModel = this.LoadFilesFromHash () + hasHashModel = this.LoadFilesFromHash (); } if (!hasHashModel) { this.WelcomeDialog (); @@ -465,7 +465,7 @@ ImporterApp.prototype.OpenFile = function () ImporterApp.prototype.LoadFilesFromHash = function () { - if (window.location.hash.length == 0) { + if (window.location.hash.length === 0) { return false; }