remove action class once the status changes from 'to verify' to 'verifying'
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
parent
06265fe770
commit
ebcb847681
|
@ -216,9 +216,10 @@ $(document).ready(function () {
|
|||
OC.generateUrl('/settings/users/{account}/verify', {account: accountId}),
|
||||
{method: 'GET'}
|
||||
).done(function(data) {
|
||||
showVerifyDialog(data.msg, data.code);
|
||||
account.attr('title', 'Verifying...');
|
||||
account.attr('src', OC.imagePath('core', 'actions/verifying.svg'));
|
||||
showVerifyDialog(data.msg, data.code);
|
||||
account.removeClass('verify-action');
|
||||
});
|
||||
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue