navigation.component.html:removed unused code 95/59995/2
authorArundathi Patil <arundpil@in.ibm.com>
Fri, 10 Aug 2018 11:16:18 +0000 (16:46 +0530)
committerTakamune Cho <tc012c@att.com>
Sun, 19 Aug 2018 19:31:47 +0000 (19:31 +0000)
In navigation.component.html file, modal-pop-up was implemented which is
never used anywhere in the component. Hence removing it.

Issue-ID: APPC-1054
Change-Id: Ib9087f7c07a4dd494a350f3a24390150512afbdc
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
src/app/shared/components/navigation/navigation.component.html

index 9e60b6e..8bcefdd 100644 (file)
@@ -2,6 +2,8 @@
 ============LICENSE_START==========================================
 ===================================================================
 Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
+
+Copyright (C) 2018 IBM.
 ===================================================================
 
 Unless otherwise specified, all software contained herein is licensed
@@ -52,21 +54,3 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property.
     </ul>
 </div>
 
-
-<ng-template #content let-c="close" let-d="dismiss">
-    <div class="modal-header">
-        <h4 class="modal-title">Modal title</h4>
-        <button type="button" class="android-more-button mdl-button mdl-js-button mdl-button--accent" aria-label="Close"
-                (click)="d('Cross click')">
-            <span aria-hidden="true">&times;</span>
-        </button>
-    </div>
-    <div class="modal-body">
-        <p>One fine body&hellip;</p>
-    </div>
-    <div class="modal-footer">
-        <button type="button" class="android-more-button mdl-button mdl-js-button mdl-button--accent"
-                (click)="c('Close click')">Close
-        </button>
-    </div>
-</ng-template>