Skip to content
This repository was archived by the owner on Nov 15, 2017. It is now read-only.

Commit 496ace0

Browse files
committed
jshint
1 parent 6b39534 commit 496ace0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

js/httpsb.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ HTTPSB.isValidScopeKey = function(scopeKey) {
7878
return this.isGlobalScopeKey(scopeKey) ||
7979
this.isDomainScopeKey(scopeKey) ||
8080
this.isSiteScopeKey(scopeKey);
81-
}
81+
};
8282

8383
/******************************************************************************/
8484

@@ -87,7 +87,7 @@ HTTPSB.isValidScopeKey = function(scopeKey) {
8787
// global scope to take effect.
8888

8989
HTTPSB.createTemporaryGlobalScope = function(url) {
90-
var scopeKey, scope;
90+
var scopeKey;
9191
scopeKey = this.siteScopeKeyFromURL(url);
9292
this.removeTemporaryScopeFromScopeKey(scopeKey);
9393
if ( scopeKey.indexOf('https:') === 0 ) {

js/rulemanager.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ function renderScopeToHTML(scopeKey) {
272272
var liScope = $('<li>', {
273273
'class': 'scope ' + strToId(scopeKey)
274274
});
275-
liScope.prop('scopeKey', scopeKey)
275+
liScope.prop('scopeKey', scopeKey);
276276
liScope.append(renderScopeKeyToHTML(scopeKey));
277277
return liScope;
278278
}
@@ -310,7 +310,7 @@ function renderTemporaryScopeTreeToHTML(scopeKey) {
310310
liScope.append(ulLists);
311311
var lists = ['gray', 'black', 'white'];
312312
var iList = lists.length;
313-
var listKey, tlist, ulLists, liList;
313+
var listKey, tlist, liList;
314314
var rules, iRule, ruleKey, ulRules, liRule;
315315
while ( iList-- ) {
316316
listKey = lists[iList];
@@ -374,7 +374,7 @@ function renderPermanentScopeTreeToHTML(scopeKey) {
374374
if ( liRule ) {
375375
liRule.addClass('permanent');
376376
} else {
377-
liRule = renderRuleToHTML(ruleKey, false)
377+
liRule = renderRuleToHTML(ruleKey, false);
378378
liRule.appendTo(liListFromScopeKey(scopeKey, 'gray').children('ul'));
379379
}
380380
}

0 commit comments

Comments
 (0)