Commit 35894f870af2f881cb6b416dcaac43924d27bde2

Authored by Mukul Rajput
1 parent 15a090b0

this is solution for bug 20273

400-SOURCECODE/AIAHTML5.Web/app/controllers/CAController.js
... ... @@ -173,7 +173,7 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout
173 173 });
174 174  
175 175 });
176   -
  176 + $('#' + localStorage.getItem("currentBodyViewId")).find('.thumbnail').addClass('HightLightThumbnail');
177 177 },
178 178 function (error) {
179 179 // handle errors here
... ...
400-SOURCECODE/AIAHTML5.Web/app/controllers/CIController.js
... ... @@ -197,7 +197,9 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout
197 197 // });
198 198  
199 199 //});
200   -
  200 + $timeout(function () { $('#' + localStorage.getItem("currentBodyViewId")).find('.thumbnail').addClass('HightLightThumbnail'); }, 100);
  201 +
  202 +
201 203 $timeout(function () { $('#ciSpinner').css('visibility', 'hidden'); }, 300);
202 204 },
203 205 function (error) {
... ...
400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
... ... @@ -122,7 +122,7 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou
122 122 $scope.moduleLandingData = result;
123 123 // setTimeout(function () { $('#' + $rootScope.highlightid).find('.thumbnail').addClass('hightlightstate'); }, 100);
124 124 if (localStorage.getItem('AAGridViewHighlightThumbnail') !== null) {
125   - setTimeout(function () { $('#' + localStorage.getItem("AAGridViewHighlightThumbnail")).find('.thumbnail').addClass('aaHightLightThumbnail'); }, 100);
  125 + setTimeout(function () { $('#' + localStorage.getItem("AAGridViewHighlightThumbnail")).find('.thumbnail').addClass('HightLightThumbnail'); }, 100);
126 126 }
127 127 //console.log(JSON.stringify(result, null, 4));
128 128 },
... ...
400-SOURCECODE/AIAHTML5.Web/themes/default/css/bootstrap/3.3.6/main.css
... ... @@ -1034,3 +1034,11 @@ background-size:cover;
1034 1034 position: fixed;
1035 1035 right: 50px;
1036 1036 }
  1037 +
  1038 +
  1039 +
  1040 +.HightLightThumbnail
  1041 + {
  1042 + background: #8C8C8C!important;
  1043 + border: 1px solid #a2a2a2;
  1044 + }
1037 1045 \ No newline at end of file
... ...