Commit 2fa7777a13388033f0aa1c934ced280c8aa85e07
Merge branch 'DisableUI6' into Develop-IPAD-MAC
Showing
1 changed file
with
2 additions
and
0 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -290,6 +290,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l |
290 | 290 | } |
291 | 291 | //to disbale layer change slider |
292 | 292 | $('.ui-slider').slider('disable'); |
293 | + document.getElementById('txtlayerNumber').style.pointerEvents = "none"; | |
293 | 294 | |
294 | 295 | $scope.isLoading = true; |
295 | 296 | $('#spinner').css('visibility', 'visible'); |
... | ... | @@ -304,6 +305,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l |
304 | 305 | } |
305 | 306 | //to enable layer change slider |
306 | 307 | $('.ui-slider').slider('enable'); |
308 | + document.getElementById('txtlayerNumber').style.pointerEvents = "auto"; | |
307 | 309 | |
308 | 310 | $scope.isLoading = false; |
309 | 311 | ... | ... |