Skip to content

Commit

Permalink
Fix sensitive range of checkboxes in event editor
Browse files Browse the repository at this point in the history
Fixes #3665
  • Loading branch information
cgx committed May 12, 2016
1 parent 9438685 commit e830900
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions NEWS
Expand Up @@ -15,6 +15,7 @@ Bug fixes
- fixed multidomain issue with non-unique ID accross domains (#3625)
- fixed bogus headers generation when stripping folded bcc header (#3664)
- fixed issue with multi-value org units (#3630)
- fixed senstive range of checkboxes in appointment editor (#3665)

2.3.10 (2016-04-05)
-------------------
Expand Down
18 changes: 9 additions & 9 deletions UI/Templates/SchedulerUI/UIxAppointmentEditor.wox
Expand Up @@ -28,12 +28,12 @@
/><span class="content"
><a href="#" id="attendeesHref"><!-- space --></a></span></label>
<hr />
<label><span class="content">
<span id="allDay"><input id="isAllDay" name="isAllDay" class="checkBox"
<span class="checkBoxList"><span class="content">
<label id="allDay"><input id="isAllDay" name="isAllDay" class="checkBox"
type="checkbox" var:selection="isAllDay"
var:checked="isAllDay"
/> <var:string label:value="All day Event"
/></span></span></label>
/></label></span></span>
<span class="checkBoxList"><var:string label:value="Start" />
<span class="content"><var:component className="UIxTimeDateControl"
const:controlID="startTime"
Expand All @@ -48,18 +48,18 @@
const:dayStartHour="0"
const:dayEndHour="23"
/></span></span>
<label><span class="content">
<span id="isTransparent"><input class="checkBox"
<span class="checkBoxList"><span class="content">
<label id="isTransparent"><input class="checkBox"
type="checkbox" name="isTransparent" var:selection="isTransparent"
var:checked="isTransparent"
/> <var:string label:value="Show Time as Free"
/></span></span></label>
<label><span class="content">
<span id="sendAppointmentNotifications"><input class="checkBox"
/></label></span></span>
<span class="checkBoxList"><span class="content">
<label id="sendAppointmentNotifications"><input class="checkBox"
type="checkbox" name="sendAppointmentNotifications" var:selection="sendAppointmentNotifications"
var:checked="sendAppointmentNotifications"
/> <var:string label:value="Send Appointment Notifications"
/></span></span></label>
/></label></span></span>

</var:if>
<var:if condition="eventIsReadOnly">
Expand Down

0 comments on commit e830900

Please sign in to comment.