lint errors

This commit is contained in:
Kyle Spearrin 2017-02-11 18:22:13 -05:00
parent 8cf02fd59a
commit 3e18f812db
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@
});
twoFactorModal.result.then(function (enabled) {
if (enabled == null) {
if (enabled === null) {
return;
}

View File

@ -80,7 +80,7 @@
'<pre>' + printContent + '</pre>');
w.print();
w.close();
}
};
$scope.close = function () {
$uibModalInstance.close(!_profile.extended ? null : _profile.extended.twoFactorEnabled);