mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-05 18:18:29 +00:00
33 lines
652 B
HTML
33 lines
652 B
HTML
<button
|
|
matTooltip="Start/Resume all nodes"
|
|
mat-icon-button
|
|
(click)="startNodes()"
|
|
class="menu-button"
|
|
>
|
|
<mat-icon>play_arrow</mat-icon>
|
|
</button>
|
|
<button
|
|
matTooltip="Suspend all nodes"
|
|
mat-icon-button
|
|
(click)="suspendNodes()"
|
|
class="menu-button"
|
|
>
|
|
<mat-icon>pause</mat-icon>
|
|
</button>
|
|
<button
|
|
matTooltip="Stop all nodes"
|
|
mat-icon-button
|
|
(click)="stopNodes()"
|
|
class="menu-button"
|
|
>
|
|
<mat-icon>stop</mat-icon>
|
|
</button>
|
|
<button
|
|
matTooltip="Reload all nodes"
|
|
mat-icon-button
|
|
(click)="reloadNodes()"
|
|
class="menu-button"
|
|
>
|
|
<mat-icon>replay</mat-icon>
|
|
</button>
|