Commit 56f31ef093197f5c0ab95cf9de4c4a20626981e7

Authored by Mukul Rajput
1 parent 1d2fae10

this is for the bug 18347

400-SOURCECODE/AIAHTML5.Web/app/controllers/CIController.js
... ... @@ -175,7 +175,7 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout
175 175  
176 176  
177 177 $('#grid-view').empty();
178   - var $e1 = $('<ul><li ng-repeat="value in selectedCIListViewData" class="col-sm-3 col-md-2"><div id="{{value._id}}" title = "{{value._Title}}" data-ng-click="openView($event)">'
  178 + var $e1 = $('<ul><li ng-repeat="value in selectedCIListViewData" class="col-sm-3 col-md-2"><div id="{{value._id}}" title = "{{value._Title}}" class="GridViewDataDivHeight" data-ng-click="openView($event)">'
179 179 + '<div class="thumbnail" >'
180 180 + '<img id="{{value._Title}}" ng-src="~/../content/images/ci/thumbnails/{{value._ThumbnailImage}}" >'//alt="{{value._Title}}" >'
181 181 + '<div class="caption"><p> {{value._Title}}</p></div></a></div></div></li></ul>').appendTo('#grid-view');
... ...
400-SOURCECODE/AIAHTML5.Web/themes/default/css/bootstrap/3.3.6/main.css
... ... @@ -1014,4 +1014,8 @@ background-size:cover;
1014 1014 max-height: 95px;
1015 1015 width: auto;
1016 1016 height: auto;
1017   -}
1018 1017 \ No newline at end of file
  1018 +}
  1019 + .GridViewDataDivHeight
  1020 + {
  1021 + height:175px;
  1022 + }
1019 1023 \ No newline at end of file
... ...