Skip to content

Commit

Permalink
LOD: use mklink4uriWithSelfHostPrefix and mkLinks filters in term page
Browse files Browse the repository at this point in the history
  • Loading branch information
carueda committed Mar 7, 2017
1 parent 11ee673 commit c3933b6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
* 2017-03-07: 3.4.1
- LOD adjustments/fixes:
- use mklink4uriWithSelfHostPrefix and mkLinks filters in grids for:
keyword-search, term-search, and generic ontology data viewer (rj-viewer)
- term page
- keyword-search, term-search, and generic ontology data viewer (rj-viewer)
- use cfg.portal.mainPage instead of windowHref in some filters dealing with creating uri links
- mkLinks filter: use getHref4uriWithSelfHostPrefix (instead of older mechanism `/#uri/...`)
- fix #97 "create vocab/mapping dialog stays open when user navigates back in browser".
Expand Down
7 changes: 5 additions & 2 deletions src/app/js/term/term.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,11 @@

<tbody>
<tr ng-repeat="row in vm.term.values">
<td ng-repeat="col in row">
<span ng-bind-html="col | mklinksOnlyExternal"></span>
<td>
<span ng-bind-html="row[0] | mklink4uriWithSelfHostPrefix"></span>
</td>
<td>
<span ng-bind-html="row[1] | mklinks"></span>
</td>

</tr>
Expand Down

0 comments on commit c3933b6

Please sign in to comment.