Add directive to control the _source attribute of a search request#93
Add directive to control the _source attribute of a search request#93jgoelen wants to merge 5 commits intoYousefED:masterfrom
Conversation
Jipos
left a comment
There was a problem hiding this comment.
Your pull requests seems to contain some unneede whitespace changes.
src/controllers/IIndexScope.ts
Outdated
| } | ||
|
|
||
| export interface IIndexViewModel { | ||
| export interface IIndexViewModel { |
| <li ng-if="indexVM.page <= 1" class="disabled"><a href="">Previous</a></li>\ | ||
| <li ng-if="indexVM.page > 1"><a href="" ng-click="indexVM.page=indexVM.page - 1">Previous</a></li>\ | ||
| <li ng-if="indexVM.pageCount <= indexVM.page" class="disabled"><a href="">Next</a></li>\ | ||
| <li ng-if="indexVM.pageCount > indexVM.page"><a href="" ng-click="indexVM.page=indexVM.page + 1">Next</a></li>\ |
There was a problem hiding this comment.
The only changes in this template are whitespace changes? Why was this necessary?
There was a problem hiding this comment.
This file is generated by the grunt build.
| <span ng-if="!filter.enabled"><a href="" ng-click="filter.enabled=true">{{bucket.key}} <span class="muted">({{bucket.doc_count}})</span></a></span>\ | ||
| <span ng-if="filter.enabled">{{bucket.key}} <a href="" ng-click="filter.enabled=false" class="facet-remove">x</a></span>\ | ||
| </label>\ | ||
| </li>\ |
There was a problem hiding this comment.
The only changes in this template are whitespace changes? Why was this necessary?
There was a problem hiding this comment.
This file is generated by the grunt build.
|
Thanks for the work guys. At the moment I'm unable to commit any time to ElasticUI, and I think it could benefit from:
Let alone the open issues raised in this repo. If any of you are interested in working more on this project, I'm open to making you a maintainer. |
This pull request adds a directive that controls the _source field of every hit. It can be used to optimize the size of the search hits in case you have documents with large fields.
Example usage: