Commit b3053ef7f28fb5bfdbf5d5aa4d60b23eeda58152

Authored by Mukul Rajput
1 parent d6374634

this is the solution for the bug tab dropdown

400-SOURCECODE/AIAHTML5.Web/index.html
@@ -1992,6 +1992,37 @@ @@ -1992,6 +1992,37 @@
1992 } 1992 }
1993 </script> 1993 </script>
1994 <script> 1994 <script>
  1995 + if (navigator.userAgent.match(/Android/i)) {
  1996 +
  1997 + $("#bodySystems").click(function () {
  1998 +
  1999 + $("#listManager").draggable('disable');
  2000 +
  2001 + }).blur(function () {
  2002 +
  2003 + $("#listManager").draggable('enable');
  2004 +
  2005 + });
  2006 +
  2007 +
  2008 +
  2009 + $("#termList").click(function () {
  2010 +
  2011 + $("#listManager").draggable('disable');
  2012 +
  2013 + }).blur(function () {
  2014 +
  2015 + $("#listManager").draggable('enable');
  2016 +
  2017 + });
  2018 +
  2019 + $("#borderWidthCanvasElement").click(function () {
  2020 +
  2021 + $("#modeleditstyle").draggable('disable');
  2022 + }).blur(function () {
  2023 + $("#modeleditstyle").draggable('enable');
  2024 + });
  2025 + }
1995 function ResizeImage(sizePercent) { 2026 function ResizeImage(sizePercent) {
1996 var autoWidth = 427; 2027 var autoWidth = 427;
1997 var autoHeight = 547; 2028 var autoHeight = 547;