Commit 9c6a79df8f57bc92757594a98a2514cb50bde604
1 parent
0b600801
this is solution for the issue that in tablet select option are not working
Showing
1 changed file
with
19 additions
and
0 deletions
400-SOURCECODE/AIAHTML5.Web/index.html
... | ... | @@ -1984,6 +1984,25 @@ |
1984 | 1984 | } |
1985 | 1985 | </script> |
1986 | 1986 | <script> |
1987 | + | |
1988 | + if (navigator.userAgent.match(/Android/i)) { | |
1989 | + $("#bodySystems").click(function () { | |
1990 | + $("#listManager").draggable('disable'); | |
1991 | + }).blur(function () { | |
1992 | + $("#listManager").draggable('enable'); | |
1993 | + }); | |
1994 | + | |
1995 | + $("#termList").click(function () { | |
1996 | + $("#listManager").draggable('disable'); | |
1997 | + }).blur(function () { | |
1998 | + $("#listManager").draggable('enable'); | |
1999 | + }); | |
2000 | + $("#borderWidthCanvasElement").click(function () { | |
2001 | + $("#modeleditstyle").draggable('disable'); | |
2002 | + }).blur(function () { | |
2003 | + $("#modeleditstyle").draggable('enable'); | |
2004 | + }); | |
2005 | + } | |
1987 | 2006 | function ResizeImage(sizePercent) { |
1988 | 2007 | var autoWidth = 427; |
1989 | 2008 | var autoHeight = 547; | ... | ... |