Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Feb 11, 2017
1 parent 8cf02fd commit 3e18f81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/settings/settingsController.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
});

twoFactorModal.result.then(function (enabled) {
if (enabled == null) {
if (enabled === null) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion src/app/settings/settingsTwoFactorController.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
'<pre>' + printContent + '</pre>');
w.print();
w.close();
}
};

$scope.close = function () {
$uibModalInstance.close(!_profile.extended ? null : _profile.extended.twoFactorEnabled);
Expand Down

0 comments on commit 3e18f81

Please sign in to comment.