summaryrefslogtreecommitdiffstats
path: root/templates/html/resize.js
diff options
context:
space:
mode:
Diffstat (limited to 'templates/html/resize.js')
-rw-r--r--templates/html/resize.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/html/resize.js b/templates/html/resize.js
index 2b86c36..76c1a6b 100644
--- a/templates/html/resize.js
+++ b/templates/html/resize.js
@@ -78,8 +78,8 @@ function initResizable()
$("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault);
$(document).bind('touchmove',function(e){
var device = navigator.userAgent.toLowerCase();
- var ios = device.match(/(iphone|ipod|ipad)/);
- if (ios) {
+ var ios_or_android = device.match(/(iphone|ipod|ipad|android)/);
+ if (ios_or_android) {
try {
var target = e.target;
while (target) {