aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2018-08-10 16:46:18 +0530
committerTakamune Cho <tc012c@att.com>2018-08-19 19:31:47 +0000
commit3dbd8b329a49c0387496be4b1d7a2ab3ce6b84c5 (patch)
tree4350ed3d586d93043a52afb17c490787da709506
parent0b0e78056e003fd536525dcbb88b6c71185bb539 (diff)
navigation.component.html:removed unused code
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>
-rw-r--r--src/app/shared/components/navigation/navigation.component.html20
1 files changed, 2 insertions, 18 deletions
diff --git a/src/app/shared/components/navigation/navigation.component.html b/src/app/shared/components/navigation/navigation.component.html
index 9e60b6e..8bcefdd 100644
--- a/src/app/shared/components/navigation/navigation.component.html
+++ b/src/app/shared/components/navigation/navigation.component.html
@@ -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>