Fix angular issue if hide the top-bar using "ng-if" instead "ng-show". Same dark blue background when typing the PIN
This commit is contained in:
parent
fa26e32d29
commit
4c1fa3d7b4
2 changed files with 6 additions and 2 deletions
|
|
@ -56,7 +56,7 @@
|
|||
</span>
|
||||
</span>
|
||||
|
||||
<div ng-controller="SidebarController" ng-init="init()" ng-if="$root.iden && !$root.hideNavigation">
|
||||
<div ng-controller="SidebarController" ng-init="init()" ng-show="$root.iden && !$root.hideNavigation">
|
||||
<nav class="tab-bar" >
|
||||
<section class="left-small">
|
||||
<a class="left-off-canvas-toggle menu-icon" ><span></span></a>
|
||||
|
|
@ -99,7 +99,7 @@
|
|||
ng-class="{'dni':$root.hideNavigation}"
|
||||
></div>
|
||||
|
||||
<section ng-class="{'main':$root.iden && !$root.starting}" ng-view></section>
|
||||
<section ng-class="{'main':$root.iden && !$root.starting, 'pin-main':$root.hideNavigation}" ng-view></section>
|
||||
|
||||
<a class="exit-off-canvas"></a>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue