super-productivity/app-src/scripts/help-section/help-section-d.html
2018-04-15 15:07:19 +02:00

17 lines
542 B
HTML

<md-button class="md-icon-button help-btn md-raised"
aria-label="Show Help for section"
ng-click="vm.isShowHelp =!vm.isShowHelp;">
<ng-md-icon icon="{{vm.isShowHelp ? 'close':'help_outline'}}"></ng-md-icon>
</md-button>
<div class="help-text ani-slide-up-down"
ng-if="vm.isShowHelp">
<div class="help-icon-wrapper">
<ng-md-icon icon="help_outline"></ng-md-icon>
</div>
<ng-transclude></ng-transclude>
<div class="help-icon-wrapper">
<ng-md-icon icon="help_outline"></ng-md-icon>
</div>
</div>