Skip to content

Commit

Permalink
Merge 55f69f8 into 54421e3
Browse files Browse the repository at this point in the history
  • Loading branch information
jaller94 committed Oct 20, 2018
2 parents 54421e3 + 55f69f8 commit afff81c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions templates/part.buttonarea.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
?>

<div class="togglebuttons">
<button class="button first" ng-value="agendaDay" ng-model="selectedView" uib-btn-radio="'agendaDay'"><?php p($l->t('Day')); ?></button>
<button class="button middle" ng-value="agendaWeek" ng-model="selectedView" uib-btn-radio="'agendaWeek'"><?php p($l->t('Week')); ?></button>
<button class="button last" ng-value="month" ng-model="selectedView" uib-btn-radio="'month'"><?php p($l->t('Month')); ?></button>
<button class="button first" accesskey="D" ng-value="agendaDay" ng-model="selectedView" uib-btn-radio="'agendaDay'"><?php p($l->t('Day')); ?></button>
<button class="button middle" accesskey="W" ng-value="agendaWeek" ng-model="selectedView" uib-btn-radio="'agendaWeek'"><?php p($l->t('Week')); ?></button>
<button class="button last" accesskey="M" ng-value="month" ng-model="selectedView" uib-btn-radio="'month'"><?php p($l->t('Month')); ?></button>
</div>
<div class="togglebuttons">
<button class="button today" ng-click="today()"><?php p($l->t('Today')); ?></button>
<button class="button today" accesskey="T" ng-click="today()"><?php p($l->t('Today')); ?></button>
</div>
4 changes: 2 additions & 2 deletions templates/part.datepicker.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
*/
?>
<div class="datepicker-heading">
<button type="button" class="button first" ng-click="prev()" aria-label="<?php p($l->t('Go back')) ?>">
<button type="button" class="button first" accesskey="P" ng-click="prev()" aria-label="<?php p($l->t('Go back')) ?>">
<i class="glyphicon glyphicon-chevron-left"></i>
</button>
<button ng-cloak type="button" class="button middle" ng-click="toggle()">
{{ dt | datepickerFilter:selectedView }}
</button>
<button type="button" class="button last" ng-click="next()" aria-label="<?php p($l->t('Go forward')) ?>">
<button type="button" class="button last" accesskey="N" ng-click="next()" aria-label="<?php p($l->t('Go forward')) ?>">
<i class="glyphicon glyphicon-chevron-right"></i>
</button>
</div>
Expand Down

0 comments on commit afff81c

Please sign in to comment.