Sync Integ to Master
[sdc.git] / catalog-ui / src / app / ng2 / components / logic / service-path / service-path.component.html
1 <div class='service-path'>
2         <button class='zoom-icons create-path-button' data-tests-id="pathsMenuBtn" (click)="showServicePathMenu = !showServicePathMenu">...</button>
3         <div class="service-path-menu"
4                  *ngIf="showServicePathMenu" >
5                 <div >
6                         <ul>
7                                 <li><div class="hand" (click)="onCreateServicePath()" data-tests-id="createPathMenuItem">
8                                         Create Service Path
9                                 </div></li>
10                                 <li><div class="hand" (click)="onListServicePath()" data-tests-id="pathsListMenuItem">
11                                         Service Paths List
12                                 </div></li>
13                         </ul>
14                 </div>
15         </div>
16         <!-- TODO  - ask Orit about positioning issues and styling issues -->
17         <!--
18         <menu-list [open]="showServicePathMenu" [position]="menuPos" >
19                 <menu-item [action]="onCreateServicePath">Create Path</menu-item>
20                 <menu-item [action]="onListServicePath">Paths' List</menu-item>
21         </menu-list> -->
22 </div>