diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-06-08 09:52:27 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-06-19 11:42:41 +0200 |
commit | d2d1e8e3750eb1c5f8049aa5d0e7326f8b49a659 (patch) | |
tree | d47b15245bfe9b238ca02ac97bd2a5e794f8af6c /apps/oauth2/js/setting-admin.js | |
parent | 7b8063a2424ea9f9d87493a23074b62afdd57854 (diff) | |
download | nextcloud-server-d2d1e8e3750eb1c5f8049aa5d0e7326f8b49a659.tar.gz nextcloud-server-d2d1e8e3750eb1c5f8049aa5d0e7326f8b49a659.zip |
Migrate OAuth Admin settings to vue
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/oauth2/js/setting-admin.js')
-rw-r--r-- | apps/oauth2/js/setting-admin.js | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/apps/oauth2/js/setting-admin.js b/apps/oauth2/js/setting-admin.js deleted file mode 100644 index 53163be1148..00000000000 --- a/apps/oauth2/js/setting-admin.js +++ /dev/null @@ -1,15 +0,0 @@ -$(document).ready(function () { - - $('.show-oauth-credentials').click(function() { - var row = $(this).parent(); - var code = $(row).find('code'); - if(code.text() === '****') { - code.text(row.data('value')); - $(this).css('opacity', 0.9); - } else { - code.text('****'); - $(this).css('opacity', 0.3); - } - }) - -}); |