Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-04-06 18:50:26 +0300
committerJoas Schilling <coding@schilljs.com>2021-04-06 18:50:26 +0300
commit0cf04c3c3ccecc57ea6e94d984c5a65deb92caf0 (patch)
tree4187834418dd0530f0fa243fe236af1f698ff318 /.eslintrc.js
parent7aa24e956d7b8167c5e9832825320e1990a5d0f9 (diff)
Disable form submit button up on submit
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 00e437c..28fe836 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,5 +1,8 @@
module.exports = {
extends: [
'@nextcloud'
- ]
+ ],
+ globals: {
+ '$': true
+ }
};