Skip to content

Commit fbc26c9

Browse files
crackevilHainish
authored andcommitted
declare var as local
1 parent 3a97968 commit fbc26c9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/chrome/content/code/IOUtil.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ const IOUtil = {
248248
if ((hasCookies = !!cookie)) cookieNames = cookie.split(/\s*;\s*/).map(this._splitName);
249249

250250
let parms = qs.split("&");
251-
for (j = parms.length; j-- > 0;) {
251+
for (var j = parms.length; j-- > 0;) {
252252
let nv = parms[j].split("=");
253253
let name = nv[0];
254254
if (this._anonRx.test(name) || cookie && cookieNames.indexOf(name) > -1)

src/components/ssl-observatory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ SSLObservatory.prototype = {
315315
}
316316

317317
var hexArr = [];
318-
for (i in h){
318+
for (var i in h){
319319
hexArr.push(toHexString(h.charCodeAt(i)));
320320
}
321321
return hexArr.join("").toUpperCase();

0 commit comments

Comments
 (0)