This repository has been archived by the owner on Aug 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finished implementing faceted search
- Loading branch information
1 parent
46d84d4
commit e970e6c
Showing
5 changed files
with
88 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<div ng-controller="ByCountryController"> | ||
<div ng-show="g.aggregate"> | ||
<ul ng-repeat="(k, v) in g.aggregate"> | ||
<li>{{k}}</li> | ||
<ul ng-repeat="(k1, v1) in v"> | ||
<li>{{k1}}</li> | ||
<ul ng-repeat="(k2, v2) in v1"> | ||
<li>{{k2}}</li> | ||
<ul ng-repeat="inst in v2"> | ||
<li> | ||
<a href="#/institutions/{{inst.eprintid}}">{{inst.title}}</a> | ||
</li> | ||
</ul> | ||
</ul> | ||
</ul> | ||
</ul> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<div ng-controller="ByTypeController"> | ||
|
||
<div ng-show="g.aggregate"> | ||
<ul ng-repeat="(k, v) in g.aggregate"> | ||
<li>{{k}}</li> | ||
<ul> | ||
<li ng-repeat="elem in v"> | ||
<a href="#/institutions/{{elem.eprintid}}">{{elem.title}}</a> | ||
</li> | ||
</ul> | ||
</ul> | ||
</div> | ||
|
||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters