Commit 1e8b04fff3f170fd7df6f8b5960dd205e9257401
1 parent
7b06aac1
layer input was not getting disabled
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,6 +290,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l | ||
290 | } | 290 | } |
291 | //to disbale layer change slider | 291 | //to disbale layer change slider |
292 | $('.ui-slider').slider('disable'); | 292 | $('.ui-slider').slider('disable'); |
293 | + document.getElementById('txtlayerNumber').style.pointerEvents = "none"; | ||
293 | 294 | ||
294 | $scope.isLoading = true; | 295 | $scope.isLoading = true; |
295 | $('#spinner').css('visibility', 'visible'); | 296 | $('#spinner').css('visibility', 'visible'); |
@@ -304,6 +305,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l | @@ -304,6 +305,7 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l | ||
304 | } | 305 | } |
305 | //to enable layer change slider | 306 | //to enable layer change slider |
306 | $('.ui-slider').slider('enable'); | 307 | $('.ui-slider').slider('enable'); |
308 | + document.getElementById('txtlayerNumber').style.pointerEvents = "auto"; | ||
307 | 309 | ||
308 | $scope.isLoading = false; | 310 | $scope.isLoading = false; |
309 | 311 |