Skip to content

Commit

Permalink
Removed content editing feature on description.
Browse files Browse the repository at this point in the history
  • Loading branch information
deoyani committed Dec 3, 2018
1 parent 4502136 commit 6bb6a96
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
<div id="description">
<div [hidden]="metadata">
<h3 name="desscription"><b>Description</b></h3><br>
<div contenteditable="true" id="recordDescription" class="card card-body bg-light">
<div contenteditable="false" id="recordDescription" class="card card-body bg-light">
<p *ngFor="let topic of record['description']; let i =index">
{{ record["description"][i] }}
</p>
</div>

<div *ngIf="checkTopics()">
<strong contenteditable="{{editContent}}" >Research Topics:</strong>
<strong contenteditable="false" >Research Topics:</strong>
<span class="font14" *ngFor="let topic of record['topic']; let i =index">
{{ topic.tag }}
<span *ngIf="i < record['topic'].length-1 ">,</span>
</span>
</div>
<div *ngIf="checkKeywords()">
<b>Subject Keywords:</b>
<span class="font14" contenteditable="true" *ngFor="let keyword of record['keyword']; let i =index">
<span class="font14" contenteditable="false" *ngFor="let keyword of record['keyword']; let i =index">
{{ keyword }}<span *ngIf="i < record['keyword'].length-1 ">,</span>
</span>
</div>
Expand Down

0 comments on commit 6bb6a96

Please sign in to comment.