1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +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

@@ -3,11 +3,11 @@ function SettingsService(userService) {
this.settingsCache = null;
initSettingsService();
};
}
function initSettingsService() {
SettingsService.prototype.clearCache = function () {
this.settingsCache = null
this.settingsCache = null;
};
SettingsService.prototype.getSettings = function (callback) {
@@ -103,4 +103,4 @@ function initSettingsService() {
function handleError(error, deferred) {
deferred.reject(error);
}
};
}