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:
authorv1r0x <vinzenz.rosenkranz@gmail.com>2016-03-09 14:40:30 +0300
committerv1r0x <vinzenz.rosenkranz@gmail.com>2016-03-09 14:40:30 +0300
commit64a143676e88ec38d75feca29adcddfec3b1453b (patch)
tree69a46a2ae6184470ba09cd775a44b74e981f6056 /js
parent8d1c0d62b189860947663fa6cce89efda0a6b7f2 (diff)
Fix typo in toggle-all
Diffstat (limited to 'js')
-rw-r--r--js/vote.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/vote.js b/js/vote.js
index 21ec2c45..e7caf4bc 100644
--- a/js/vote.js
+++ b/js/vote.js
@@ -101,7 +101,7 @@ $(document).on('click', '.toggle-all', function(e) {
selectItem(curr, 'poll-cell-active-not');
}
for(var i=0; i<notselected.length; i++) {
- var curr = $(unselected[i]);
+ var curr = $(notselected[i]);
curr.switchClass('poll-cell-active-un', 'poll-cell-active-is');
selectItem(curr);
}