1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

lint fixes

This commit is contained in:
Kyle Spearrin
2017-07-14 15:34:05 -04:00
parent cf850838b5
commit e4baa19232
24 changed files with 94 additions and 83 deletions

View File

@@ -10,7 +10,7 @@ window[window.GoogleAnalyticsObject] = function (action, param1, param2, param3,
chrome.storage.local.get('disableGa', function (obj) {
// Default for Firefox is disabled.
if ((isFirefox && obj['disableGa'] === undefined) || obj['disableGa']) {
if ((isFirefox && obj.disableGa === undefined) || obj.disableGa) {
return;
}

View File

@@ -4,7 +4,7 @@
this.info = infoCallback;
this.iframe = null;
this.connectorLink = document.createElement('a');
};
}
U2f.prototype.init = function (data) {
var self = this;
@@ -44,7 +44,7 @@ U2f.prototype.validMessage = function (event) {
}
return event.data.indexOf('success|') === 0 || event.data.indexOf('error|') === 0 || event.data.indexOf('info|') === 0;
}
};
U2f.prototype.stop = function () {
this.sendMessage('stop');
@@ -67,4 +67,4 @@ U2f.prototype.base64Encode = function (str) {
return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g, function (match, p1) {
return String.fromCharCode('0x' + p1);
}));
}
};