move today button from aside to section title

This commit is contained in:
Mario Vavti 2015-11-19 11:38:34 +01:00
parent 929f524e77
commit ba52af786e
4 changed files with 3 additions and 3 deletions

View file

@ -671,7 +671,6 @@ function widget_eventsmenu($arr) {
'$day' => t('Day View'),
'$week' => t('Week View'),
'$month' => t('Month View'),
'$today' => t('Today'),
'$export' => t('Export'),
'$upload' => t('Import'),
'$submit' => t('Submit')

View file

@ -530,7 +530,8 @@ function events_content(&$a) {
'$upload' => t('Import'),
'$submit' => t('Submit'),
'$prev' => t('Previous'),
'$next' => t('Next'),
'$next' => t('Next'),
'$today' => t('Today')
));
if (x($_GET,'id')){ echo $o; killme(); }

View file

@ -6,6 +6,7 @@
<div class="btn-group">
<button class="btn btn-default btn-xs" onclick="changeView('prev', false);" title="{{$prev}}"><i class="icon-backward"></i></button>
<button class="btn btn-default btn-xs" onclick="changeView('today', false);" title="{{$today}}"><i class="icon-bullseye"></i></button>
<button class="btn btn-default btn-xs" onclick="changeView('next', false);" title="{{$next}}"><i class="icon-forward"></i></button>
</div>
</div>

View file

@ -4,6 +4,5 @@
<li><a href="#" onclick="changeView('changeView', 'month'); return false;">{{$month}}</a></li>
<li><a href="#" onclick="changeView('changeView', 'agendaWeek'); return false;">{{$week}}</a></li>
<li><a href="#" onclick="changeView('changeView', 'agendaDay'); return false;">{{$day}}</a></li>
<li><a href="#" onclick="changeView('today', false); return false;">{{$today}}</a></li>
</ul>
</div>