Source:grid-view.component.js

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