style the checkboxes in the event form
This commit is contained in:
parent
abcc70722c
commit
e7a68eaef0
@ -588,8 +588,8 @@ function events_content(&$a) {
|
||||
'$n_checked' => $n_checked,
|
||||
'$f_text' => t('Event Finishes:'),
|
||||
'$f_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$fyear+5),DateTime::createFromFormat('Y-m-d H:i',"$fyear-$fmonth-$fday $fhour:$fminute"),'finish_text',true,true,'start_text'),
|
||||
'$adjust' => array('adjust', t('Adjust for viewer timezone'), $a_checked),
|
||||
'$a_text' => t('Adjust for viewer timezone'),
|
||||
'$a_checked' => $a_checked,
|
||||
'$d_text' => t('Description:'),
|
||||
'$d_orig' => $d_orig,
|
||||
'$l_text' => t('Location:'),
|
||||
|
@ -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();
|
||||
|
@ -24,7 +24,12 @@
|
||||
|
||||
<div class="clear"></div><br />
|
||||
|
||||
<input type="checkbox" name="nofinish" value="1" id="event-nofinish-checkbox" {{$n_checked}} onclick="showHideFinishDate(); return true;" /> <div id="event-nofinish-text">{{$n_text}}</div>
|
||||
<div class='field checkbox'>
|
||||
<label class="mainlabel" for='id_nofinish'>{{$n_text}}</label>
|
||||
<div><input type="checkbox" name='nofinish' id='id_nofinish' value="1" {{$n_checked}} onclick="showHideFinishDate(); return true;" >
|
||||
<label class="switchlabel" for='id_nofinish'> <span class="onoffswitch-inner" data-on='' data-off='' ></span>
|
||||
<span class="onoffswitch-switch"></span> </label></div><span class='field_help'></span>
|
||||
</div>
|
||||
|
||||
<div id="event-nofinish-break"></div>
|
||||
|
||||
@ -35,8 +40,7 @@
|
||||
|
||||
<div id="event-datetime-break"></div>
|
||||
|
||||
|
||||
<input type="checkbox" name="adjust" value="1" id="event-adjust-checkbox" {{$a_checked}} /> <div id="event-adjust-text">{{$a_text}}</div>
|
||||
{{include file="field_checkbox.tpl" field=$adjust}}
|
||||
|
||||
<div id="event-adjust-break"></div>
|
||||
|
||||
|
Reference in New Issue
Block a user