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

lint fixes

This commit is contained in:
Kyle Spearrin
2017-10-06 10:36:45 -04:00
parent 7394cec986
commit 79f20f09cb
8 changed files with 20 additions and 17 deletions

View File

@@ -41,7 +41,7 @@
if (paramIndex > -1) {
pagePath = pagePath.substring(0, paramIndex);
}
return encodeURIComponent(pagePath)
return encodeURIComponent(pagePath);
}
bgPage.bg_appIdService.getAnonymousAppId(function (gaAnonAppId) {

View File

@@ -11,7 +11,9 @@
var thisU2f = null;
U2f.prototype.init = function (data) {
/* jshint ignore:start */
var self = thisU2f = this;
/* jshint ignore:end */
self.connectorLink.href = self.webVaultUrl + '/u2f-connector.html' +
'?data=' + this.base64Encode(JSON.stringify(data)) +