aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-02-05 21:01:02 -0800
committerfriendica <info@friendica.com>2015-02-05 21:01:02 -0800
commite7a68eaef002a9263d20076bcbe6b4c93378255f (patch)
tree12abda2f0f54e4bef46113d5385f595d257432af /view/js
parentabcc70722c3577e63b53fcd3acf19d2916d810df (diff)
downloadvolse-hubzilla-e7a68eaef002a9263d20076bcbe6b4c93378255f.tar.gz
volse-hubzilla-e7a68eaef002a9263d20076bcbe6b4c93378255f.tar.bz2
volse-hubzilla-e7a68eaef002a9263d20076bcbe6b4c93378255f.zip
style the checkboxes in the event form
Diffstat (limited to 'view/js')
-rw-r--r--view/js/mod_events.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/mod_events.js b/view/js/mod_events.js
index 0ce128fcc..d4dc9b585 100644
--- a/view/js/mod_events.js
+++ b/view/js/mod_events.js
@@ -2,7 +2,7 @@
$(document).ready( function() { showHideFinishDate(); });
function showHideFinishDate() {
- if( $('#event-nofinish-checkbox').is(':checked'))
+ if( $('#id_nofinish').is(':checked'))
$('#event-finish-wrapper').hide();
else
$('#event-finish-wrapper').show();