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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorVinzenz <vinzenz.rosenkranz@gmail.com>2016-08-28 14:38:14 +0300
committerVinzenz <vinzenz.rosenkranz@gmail.com>2016-08-28 14:38:14 +0300
commitda91d79a468c6e2b5dea04a4708a0d701476a102 (patch)
treecb27af8de8c9b3b3eb1f3c29f31093f08485fa78 /js
parent997dc2f2247dd88ec5b6b82f2a8d05664a21b5e4 (diff)
make current selected access type clickable
Diffstat (limited to 'js')
-rw-r--r--js/create_edit.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/create_edit.js b/js/create_edit.js
index ca07ecc2..bbe44ebc 100644
--- a/js/create_edit.js
+++ b/js/create_edit.js
@@ -227,7 +227,7 @@ $(document).ready(function () {
}
});
- $('input[type=radio][name=accessType]').change(function() {
+ $('input[type=radio][name=accessType]').click(function() {
access_type = this.value;
if(access_type == 'select') {
$("#access_rights").show();