diff options
author | Robin McCorkell <rmccorkell@owncloud.com> | 2016-02-08 21:45:20 +0000 |
---|---|---|
committer | Robin McCorkell <robin@mccorkell.me.uk> | 2016-05-03 11:30:02 +0100 |
commit | a09ef66eea12faf1055f642fa79e910773cb96a0 (patch) | |
tree | 877e4c542f5d840c0bf9c35011323c3cd8d0691c /apps/files_external/js/oauth2.js | |
parent | 43abe2b64855d5acbde4ce4c58a4f543371bb001 (diff) | |
download | nextcloud-server-a09ef66eea12faf1055f642fa79e910773cb96a0.tar.gz nextcloud-server-a09ef66eea12faf1055f642fa79e910773cb96a0.zip |
Change colour of input fields instead of printing 'Access granted'
Diffstat (limited to 'apps/files_external/js/oauth2.js')
-rw-r--r-- | apps/files_external/js/oauth2.js | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/apps/files_external/js/oauth2.js b/apps/files_external/js/oauth2.js index 64be9b1ed93..13b5162694e 100644 --- a/apps/files_external/js/oauth2.js +++ b/apps/files_external/js/oauth2.js @@ -1,5 +1,9 @@ $(document).ready(function() { + function displayGranted($tr) { + $tr.find('.configuration input.auth-param').attr('disabled', 'disabled').addClass('disabled-success'); + } + OCA.External.Settings.mountConfig.whenSelectAuthMechanism(function($tr, authMechanism, scheme, onCompletion) { if (authMechanism === 'oauth2::oauth2') { var config = $tr.find('.configuration'); @@ -13,9 +17,7 @@ $(document).ready(function() { onCompletion.then(function() { var configured = $tr.find('[data-parameter="configured"]'); if ($(configured).val() == 'true') { - $tr.find('.configuration input.auth-param').attr('disabled', 'disabled'); - $tr.find('.configuration').append($('<span/>').attr('id', 'access') - .text(t('files_external', 'Access granted'))); + displayGranted($tr); } else { var client_id = $tr.find('.configuration [data-parameter="client_id"]').val(); var client_secret = $tr.find('.configuration [data-parameter="client_secret"]') @@ -43,10 +45,7 @@ $(document).ready(function() { $(configured).val('true'); OCA.External.Settings.mountConfig.saveStorageConfig($tr, function(status) { if (status) { - $tr.find('.configuration input.auth-param').attr('disabled', 'disabled'); - $tr.find('.configuration').append($('<span/>') - .attr('id', 'access') - .text(t('files_external', 'Access granted'))); + displayGranted($tr); } }); } else { |