diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2022-04-20 10:40:09 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-04-21 19:00:28 +0200 |
commit | 1dee36c761b87ab79bb54cfc561d576d8c72434c (patch) | |
tree | f16175b4983c69b0796fafb71d6ccc343cf8bbd7 /apps/theming/src | |
parent | 7b686abe7fb53c8475d8295a59167bdab95fccc9 (diff) | |
download | nextcloud-server-1dee36c761b87ab79bb54cfc561d576d8c72434c.tar.gz nextcloud-server-1dee36c761b87ab79bb54cfc561d576d8c72434c.zip |
Remove accessibility
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/theming/src')
-rw-r--r-- | apps/theming/src/settings.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/src/settings.js b/apps/theming/src/settings.js index 94ae6fd6314..45a75e53ea5 100644 --- a/apps/theming/src/settings.js +++ b/apps/theming/src/settings.js @@ -28,5 +28,5 @@ Vue.prototype.OC = OC Vue.prototype.t = t const View = Vue.extend(App) -const accessibility = new View() -accessibility.$mount('#theming') +const theming = new View() +theming.$mount('#theming') |