mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-21 17:58:00 +00:00
41 lines
841 B
HTML
41 lines
841 B
HTML
<button
|
|
matTooltip="Console connect to all nodes"
|
|
mat-icon-button
|
|
(click)="startConsoleForAllNodes()"
|
|
class="menu-button"
|
|
>
|
|
<mat-icon>web_asset</mat-icon>
|
|
</button>
|
|
<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>
|