31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
|
|
<!--
|
||
|
|
|
||
|
|
Copyright © 2016-2021 The Thingsboard Authors
|
||
|
|
|
||
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
|
you may not use this file except in compliance with the License.
|
||
|
|
You may obtain a copy of the License at
|
||
|
|
|
||
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
|
||
|
|
Unless required by applicable law or agreed to in writing, software
|
||
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
|
See the License for the specific language governing permissions and
|
||
|
|
limitations under the License.
|
||
|
|
|
||
|
|
-->
|
||
|
|
<div style="position: relative;">
|
||
|
|
<button color="primary" mat-button mat-icon-button
|
||
|
|
class="tb-help-popup-button tb-mat-32"
|
||
|
|
type="button"
|
||
|
|
(click)="toggleHelp()"
|
||
|
|
matTooltip="{{'help.show-help' | translate}}"
|
||
|
|
matTooltipPosition="above">
|
||
|
|
<mat-icon class="material-icons">{{popoverVisible ? 'help' : 'help_outline'}}</mat-icon>
|
||
|
|
</button>
|
||
|
|
<div *ngIf="popoverVisible && !popoverReady" fxFlex fxLayoutAlign="center center" class="tb-absolute-fill tb-help-popup-button-loading">
|
||
|
|
<mat-spinner mode="indeterminate" diameter="20" strokeWidth="2"></mat-spinner>
|
||
|
|
</div>
|
||
|
|
</div>
|