rathena / FluxCP

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
a month agoa year old
Documentation comment not found for function declaration dateDisable
43	sel.attr('disabled', false);
44}
45
46function dateDisable(sel){47	sel.attr('disabled', 'disabled');
48}
Documentation comment not found for function declaration dateEnable
39	});
40}
41
42function dateEnable(sel){43	sel.attr('disabled', false);
44}
45
Documentation comment not found for function declaration processDateBoxes
33	}
34}
35
36function processDateBoxes(dateCheckBox, dateSelects, dateSelects2){37	$(dateCheckBox).click(function(){
38		processDateInit(dateCheckBox, dateSelects, dateSelects2);
39	});
Documentation comment not found for function declaration processDateInit
22	}	
23}
24
25function processDateInit(dateCheckBox, dateSelects, dateSelects2){26	if ($(dateCheckBox).attr('checked')) {
27		dateEnable(dateSelects);
28		dateEnable(dateSelects2);
Documentation comment not found for function declaration processDateFields
 1function processDateFields(){ 2	var dateFields = new Array();
 3	var dateName;
 4	var dateCheckBox;