Skip to content

Commit

Permalink
(html) Fix fab button position in Calendar module
Browse files Browse the repository at this point in the history
Fixes #3462
  • Loading branch information
cgx committed Feb 25, 2016
1 parent 4526227 commit e27cdff
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions NEWS
Expand Up @@ -33,6 +33,7 @@ Bug fixes
- [web] fixed password change (#3496)
- [web] fixed saving of notification email for calendar changes (#3522)
- [web] fixed ACL editor for authenticated users in Mail module
- [web] fixed fab button position in Calendar module (#3462)
- [eas] allow EAS attachments get on 2nd-level mailboxes (#3505)
- [eas] fix EAS bday shift (#3518)

Expand Down
24 changes: 12 additions & 12 deletions UI/Templates/SchedulerUI/UIxCalMainView.wox
Expand Up @@ -589,19 +589,19 @@
</md-list>
</md-tab>
</md-tabs>
<md-button class="md-fab md-fab-bottom-right"
label:aria-label="Create a new event"
ng-click="list.newComponent($event)"
ng-if="list.componentType == 'events'">
<md-icon >event</md-icon>
</md-button>
<md-button class="md-fab md-fab-bottom-right"
label:aria-label="Create a new task"
ng-click="list.newComponent($event)"
ng-if="list.componentType == 'tasks'">
<md-icon>assignment_turned_in</md-icon>
</md-button>
</md-content>
<md-button class="md-fab md-fab-bottom-right"
label:aria-label="Create a new event"
ng-click="list.newComponent($event)"
ng-if="list.componentType == 'events'">
<md-icon >event</md-icon>
</md-button>
<md-button class="md-fab md-fab-bottom-right"
label:aria-label="Create a new task"
ng-click="list.newComponent($event)"
ng-if="list.componentType == 'tasks'">
<md-icon>assignment_turned_in</md-icon>
</md-button>
</div>
<div id="detailView" class="view-detail hide-xs" layout="column" ui-view="calendarView">
<!-- calendar view -->
Expand Down

0 comments on commit e27cdff

Please sign in to comment.