From 2e1fbcf003ce8d48511578c02b4b61b1fd006043 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 25 Nov 2016 23:53:46 -0500 Subject: [PATCH] Fix js lint issues with background.js --- src/background.js | 3 +-- src/manifest.json | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/background.js b/src/background.js index e344f11e41e..5d45e0023d3 100644 --- a/src/background.js +++ b/src/background.js @@ -352,11 +352,10 @@ function autofillPage() { return; } - var fillScript = null; if (siteToAutoFill && pageDetailsToAutoFill && pageDetailsToAutoFill.length) { for (var i = 0; i < pageDetailsToAutoFill.length; i++) { // make sure we're still on correct tab - if (pageDetailsToAutoFill[i].tabId != tabId) { + if (pageDetailsToAutoFill[i].tabId !== tabId) { continue; } diff --git a/src/manifest.json b/src/manifest.json index 3cdc9047578..b2cf58ea919 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -5,6 +5,7 @@ "version": "1.5.0", "description": "__MSG_extDesc__", "default_locale": "en", + "author": "8bit Solutions LLC", "homepage_url": "https://bitwarden.com", "icons": { "16": "images/icon16.png",