Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mayswind committed Aug 12, 2018
1 parent edd3ac5 commit e18cdc6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/scripts/services/ariaNgSettingService.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
var browserSupportStorage = browserFeatures.localStroage || browserFeatures.cookies;

var onFirstVisitCallbacks = [];
var firstVisitCallbackfired = false;
var firstVisitCallbackFired = false;
var sessionSettings = {
debugMode: false
};
Expand All @@ -24,7 +24,7 @@
return;
}

if (firstVisitCallbackfired || !angular.isArray(onFirstVisitCallbacks) || onFirstVisitCallbacks.length < 1) {
if (firstVisitCallbackFired || !angular.isArray(onFirstVisitCallbacks) || onFirstVisitCallbacks.length < 1) {
return;
}

Expand All @@ -33,7 +33,7 @@
callback();
}

firstVisitCallbackfired = true;
firstVisitCallbackFired = true;
};

var isInsecureProtocolDisabled = function () {
Expand Down

0 comments on commit e18cdc6

Please sign in to comment.