mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
16 lines
284 B
JavaScript
16 lines
284 B
JavaScript
/**
|
|
* JavaScript for mod/events
|
|
*/
|
|
|
|
$(document).ready( function() {
|
|
|
|
enableDisableFinishDate();
|
|
|
|
});
|
|
|
|
function enableDisableFinishDate() {
|
|
if( $('#id_nofinish').is(':checked'))
|
|
$('#id_finish_text').prop("disabled", true);
|
|
else
|
|
$('#id_finish_text').prop("disabled", false);
|
|
}
|