(function () {
'use strict';
// List view
angular.module('mohistory').component('listView', {
templateUrl: 'app/components/list-view/list-view.component.html',
controller: listViewCtrl,
controllerAs: 'listView',
bindings: {
context: '<',
items: '<',
addFacet: '<',
isFacetSelected: '<',
}
});
listViewCtrl.$inject = [];
/**
* Component to display and manage the list view for search results.
* @memberof mohistory
* @name listView
* @ngdoc component
*/
function listViewCtrl() {
var vm = this;
}
})();