Move the password check before we hide the modal
This commit is contained in:
parent
f746eb3381
commit
4e04ad5ca7
1 changed files with 2 additions and 2 deletions
|
@ -817,8 +817,6 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading
|
||||||
// If the error is a fresh login required, show the dialog.
|
// If the error is a fresh login required, show the dialog.
|
||||||
if (resp.status == 401 && resp.data['error_type'] == 'fresh_login_required') {
|
if (resp.status == 401 && resp.data['error_type'] == 'fresh_login_required') {
|
||||||
var verifyNow = function() {
|
var verifyNow = function() {
|
||||||
if (!$('#freshPassword').val()) { return; }
|
|
||||||
|
|
||||||
var info = {
|
var info = {
|
||||||
'password': $('#freshPassword').val()
|
'password': $('#freshPassword').val()
|
||||||
};
|
};
|
||||||
|
@ -866,6 +864,8 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading
|
||||||
box.bind('shown.bs.modal', function(){
|
box.bind('shown.bs.modal', function(){
|
||||||
box.find("input").focus();
|
box.find("input").focus();
|
||||||
box.find("form").submit(function() {
|
box.find("form").submit(function() {
|
||||||
|
if (!$('#freshPassword').val()) { return; }
|
||||||
|
|
||||||
box.modal('hide');
|
box.modal('hide');
|
||||||
verifyNow();
|
verifyNow();
|
||||||
});
|
});
|
||||||
|
|
Reference in a new issue