Commit bd35c2bd6a7f61dd4becb234355f42c535bd97cf
1 parent
6663b9c5
25431 : Android > Dissectible Anatomy > The layer input box display the highest …
…layer number of the view if the user enters only two digit in the layer input box.
Showing
1 changed file
with
3 additions
and
1 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -9525,7 +9525,9 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l |
9525 | 9525 | } |
9526 | 9526 | |
9527 | 9527 | } |
9528 | - | |
9528 | + if ((navigator.userAgent.match(/Android/i))) { | |
9529 | + $("#txtlayerNumber").blur(); | |
9530 | + } | |
9529 | 9531 | |
9530 | 9532 | } |
9531 | 9533 | ... | ... |