Commit 35894f870af2f881cb6b416dcaac43924d27bde2
1 parent
15a090b0
this is solution for bug 20273
Showing
4 changed files
with
13 additions
and
3 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/CAController.js
@@ -173,7 +173,7 @@ function ($scope, $window, $rootScope, $compile, $http, log, $location, $timeout | @@ -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 | function (error) { | 178 | function (error) { |
179 | // handle errors here | 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,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 | $timeout(function () { $('#ciSpinner').css('visibility', 'hidden'); }, 300); | 203 | $timeout(function () { $('#ciSpinner').css('visibility', 'hidden'); }, 300); |
202 | }, | 204 | }, |
203 | function (error) { | 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,7 +122,7 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou | ||
122 | $scope.moduleLandingData = result; | 122 | $scope.moduleLandingData = result; |
123 | // setTimeout(function () { $('#' + $rootScope.highlightid).find('.thumbnail').addClass('hightlightstate'); }, 100); | 123 | // setTimeout(function () { $('#' + $rootScope.highlightid).find('.thumbnail').addClass('hightlightstate'); }, 100); |
124 | if (localStorage.getItem('AAGridViewHighlightThumbnail') !== null) { | 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 | //console.log(JSON.stringify(result, null, 4)); | 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,3 +1034,11 @@ background-size:cover; | ||
1034 | position: fixed; | 1034 | position: fixed; |
1035 | right: 50px; | 1035 | right: 50px; |
1036 | } | 1036 | } |
1037 | + | ||
1038 | + | ||
1039 | + | ||
1040 | +.HightLightThumbnail | ||
1041 | + { | ||
1042 | + background: #8C8C8C!important; | ||
1043 | + border: 1px solid #a2a2a2; | ||
1044 | + } | ||
1037 | \ No newline at end of file | 1045 | \ No newline at end of file |