aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/about-us/aboutus.component.html
diff options
context:
space:
mode:
authorasgar <ma926a@us.att.com>2019-03-08 19:52:33 +0530
committerAsgar Samiulla <ma926a@us.att.com>2019-03-15 10:53:58 +0000
commitaf56b68e030085aa523152e83811705636ead79c (patch)
tree088c8faafb77a79a5fcc4001877dc13af4ffe936 /src/app/about-us/aboutus.component.html
parenteedac3e312c66499ca5ff9d72388c31b25813225 (diff)
added ansible server functionality
multiple ansible server for CDT Issue-ID: APPC-1510 Change-Id: I383bc63705418654efb596c617309821ebbeb9b4 Signed-off-by: Mohamed Asgar Samiulla <ma926a@us.att.com>
Diffstat (limited to 'src/app/about-us/aboutus.component.html')
-rw-r--r--src/app/about-us/aboutus.component.html21
1 files changed, 19 insertions, 2 deletions
diff --git a/src/app/about-us/aboutus.component.html b/src/app/about-us/aboutus.component.html
index d7460f3..0d641b9 100644
--- a/src/app/about-us/aboutus.component.html
+++ b/src/app/about-us/aboutus.component.html
@@ -30,7 +30,8 @@ limitations under the License.
<div class="mdl-card__title">
<div class="text-center">
Contact us @:
- <a href="mailto:{{contactUsMail.CONTACT_US_EMAIL}}?Subject={{contactUsMail.CONTACT_US_SUBJECT}}">APPC DEVELOPMENT TEAM</a>
+ <a href="mailto:{{contactUsMail.CONTACT_US_EMAIL}}?Subject={{contactUsMail.CONTACT_US_SUBJECT}}">
+ CDT DEVELOPMENT TEAM </a>
</div>
</div>
</div>&emsp;&emsp;&emsp;&emsp;
@@ -61,7 +62,7 @@ limitations under the License.
</div>
<div class="text-right">
<div class="mdl-dialog__content">
- <a class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" (click)="open(content)">VIEW CHANGE LOG</a>
+ <a class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" (click)="versionLogFile(); versionLog.open();">VIEW CHANGE LOG</a>
</div>
</div>
@@ -70,3 +71,19 @@ limitations under the License.
</div>
</div>
</div>
+
+<!-- Modal for version Log and download file -->
+<modal #versionLog id="versionLog">
+ <modal-header [show-close]="true">
+ <h4 class="modal-title">VERSION CHANGE LOG</h4>
+ </modal-header>
+ <modal-body>
+ <textarea class="textarea">{{this.data}}</textarea>
+ </modal-body>
+ <modal-footer [show-default-buttons]="false">
+ <button type="button" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" (click)="downloadLogFile()">
+ Download
+ </button>
+ <button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" data-dismiss="modal">cancel</button>
+ </modal-footer>
+</modal>