Skip to content

Commit

Permalink
Merge pull request #137 from nextcloud/shares-new-checkbox
Browse files Browse the repository at this point in the history
Use new checkbox styles for shares
  • Loading branch information
georgehrke authored Oct 18, 2016
2 parents 9a8a35b + 3326e89 commit feec09b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions templates/editor.popover.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class="events--input h2"
<div class="events--checkbox pull-left">
<input type="checkbox" name="alldayeventcheckbox"
ng-model="properties.allDay"
class="checkbox"
id="alldayeventcheckbox" class="event-checkbox"
ng-change="toggledAllDay()" />
<label for="alldayeventcheckbox"><?php p($l->t('All day Event'))?></label>
Expand Down
1 change: 1 addition & 0 deletions templates/editor.sidebar.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class="advanced--input h2"
</div>
<div class="advanced--checkbox pull-left pull-half">
<input type="checkbox" name="alldayeventcheckbox"
class="checkbox"
ng-model="properties.allDay"
id="alldayeventcheckbox" class="event-checkbox"
ng-change="toggledAllDay()"/>
Expand Down
2 changes: 2 additions & 0 deletions templates/part.calendarlist.item.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ class="app-navigation-entry-menu hidden">
{{ userShare.displayname }} -
<input id="checkbox_sharedWithUser_{{ $parent.$index }}_{{ $id }}"
name="editable"
class="checkbox"
ng-change="updateExistingUserShare(item.calendar, userShare.id, userShare.writable)"
ng-model="userShare.writable"
type="checkbox"
Expand All @@ -189,6 +190,7 @@ class="app-navigation-entry-menu hidden">
{{ groupShare.displayname }} (<?php p($l->t('group')); ?>) -
<input id="checkbox_sharedWithGroup_{{ $parent.$index }}_{{ $id }}"
name="editable"
class="checkbox"
ng-change="updateExistingGroupShare(item.calendar, groupShare.id, groupShare.writable)"
ng-model="groupShare.writable"
type="checkbox"
Expand Down

0 comments on commit feec09b

Please sign in to comment.