Toggle navigation bar on mobile and desktop devices
Signed-off-by: Artem Anufrij <artem.anufrij@live.de>
This commit is contained in:
committed by
Julius Härtl
parent
42f3f5c1dd
commit
882bf773c8
@@ -60,11 +60,12 @@ if(!\OC::$server->getConfig()->getSystemValue('debug', false)) {
|
||||
|
||||
<div id="app" class="app-deck" data-ng-app="Deck" ng-controller="AppController" ng-cloak>
|
||||
|
||||
<div id="app-navigation" data-ng-controller="ListController" ng-init="initSidebar()" ng-if="navibar.show">
|
||||
<div id="app-navigation" data-ng-controller="ListController" ng-init="initSidebar()">
|
||||
<?php print_unescaped($this->inc('part.navigation')); ?>
|
||||
<?php /* print_unescaped($this->inc('part.settings')); */ ?>
|
||||
</div>
|
||||
<div id="app-content" ng-class="{ 'details-visible': sidebar.show }" ui-view>
|
||||
<div id="app-content" ng-class="{ 'details-visible': sidebar.show }">
|
||||
<div ui-view></div>
|
||||
</div>
|
||||
<route-loading-indicator></route-loading-indicator>
|
||||
|
||||
|
||||
@@ -5,12 +5,11 @@
|
||||
<p>{{ statusservice.text }}</p></div>
|
||||
</div>
|
||||
|
||||
<div id="board-header">
|
||||
<div id="app-navigation-toggle" class="icon-menu" ng-click="navibar.show=!navibar.show"></div>
|
||||
<a class="crumb" href="#" title="<?php p($l->t('All Boards')); ?>">
|
||||
<i class="icon icon-home"></i>
|
||||
<span class="hidden-visually"><?php p($l->t('All Boards')); ?></span>
|
||||
</a>
|
||||
<div id="controls">
|
||||
<div class="crumb svg last">
|
||||
<a href="#" id="button-home" title="<?php p($l->t('All Boards')); ?>">
|
||||
</a>
|
||||
</div>
|
||||
<h1 class="title" style="border-bottom: 2px solid #{{boardservice.getCurrent().color }};">
|
||||
{{ boardservice.getCurrent().title }}
|
||||
</h1>
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
<div id="board-header">
|
||||
<div id="app-navigation-toggle" class="icon-menu" ng-click="navibar.show=!navibar.show"></div>
|
||||
<a class="crumb" href="#" title="<?php p($l->t('All Boards')); ?>">
|
||||
<i class="icon icon-home"></i>
|
||||
<span class="hidden-visually"><?php p($l->t('All Boards')); ?></span>
|
||||
</a>
|
||||
<div id="controls">
|
||||
<div class="breadcrumb">
|
||||
<div class="crumb svg last">
|
||||
<a href="#" id="button-home" title="<?php p($l->t('All Boards')); ?>">
|
||||
</a>
|
||||
<span style="display: none;"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="boardlist">
|
||||
<table width="100%">
|
||||
|
||||
Reference in New Issue
Block a user