54 lines
2.1 KiB
HTML
54 lines
2.1 KiB
HTML
|
|
<!--
|
||
|
|
|
||
|
|
Copyright © 2016-2019 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 fxLayout="row" fxLayoutGap="12px" [fxHide]="isShareLinkLocal()">
|
||
|
|
<button mat-button mat-icon-button mat-raised-button class="mat-primary"
|
||
|
|
shareButton="facebook"
|
||
|
|
title="{{ shareTitle }}"
|
||
|
|
description="{{ shareText }}"
|
||
|
|
url="{{ shareLink }}"
|
||
|
|
matTooltipPosition="above"
|
||
|
|
matTooltip="{{ 'action.share-via' | translate:{provider:'Facebook'} }}">
|
||
|
|
<mat-icon svgIcon="mdi:facebook"></mat-icon>
|
||
|
|
</button>
|
||
|
|
<button mat-button mat-icon-button mat-raised-button class="mat-primary"
|
||
|
|
shareButton="twitter"
|
||
|
|
title="{{ shareTitle }}"
|
||
|
|
tags="{{ shareHashTags }}"
|
||
|
|
url="{{ shareLink }}"
|
||
|
|
matTooltipPosition="above"
|
||
|
|
matTooltip="{{ 'action.share-via' | translate:{provider:'Twitter'} }}">
|
||
|
|
<mat-icon svgIcon="mdi:twitter"></mat-icon>
|
||
|
|
</button>
|
||
|
|
<button mat-button mat-icon-button mat-raised-button class="mat-primary"
|
||
|
|
shareButton="linkedin"
|
||
|
|
title="{{ shareTitle }}"
|
||
|
|
url="{{ shareLink }}"
|
||
|
|
matTooltipPosition="above"
|
||
|
|
matTooltip="{{ 'action.share-via' | translate:{provider:'Linkedin'} }}">
|
||
|
|
<mat-icon svgIcon="mdi:linkedin"></mat-icon>
|
||
|
|
</button>
|
||
|
|
<button mat-button mat-icon-button mat-raised-button class="mat-primary"
|
||
|
|
shareButton="reddit"
|
||
|
|
title="{{ shareTitle }}"
|
||
|
|
url="{{ shareLink }}"
|
||
|
|
matTooltipPosition="above"
|
||
|
|
matTooltip="{{ 'action.share-via' | translate:{provider:'Reddit'} }}">
|
||
|
|
<mat-icon svgIcon="mdi:reddit"></mat-icon>
|
||
|
|
</button>
|
||
|
|
</div>
|