|
@@ -1695,12 +1695,18 @@
|
|
evt.preventDefault();
|
|
evt.preventDefault();
|
|
evt.stopImmediatePropagation();
|
|
evt.stopImmediatePropagation();
|
|
fwdown($(this).parent(), evt);
|
|
fwdown($(this).parent(), evt);
|
|
|
|
+ let fwMaxiButton = $(this).parent().find(".maxToogleButton").parent()[0]
|
|
|
|
+ doubleTouchHandler(this, evt, function(){
|
|
|
|
+ toggleMax(fwMaxiButton, evt);
|
|
|
|
+ });
|
|
});
|
|
});
|
|
|
|
+
|
|
$(".fwdragger").off("touchmove").on("touchmove", function(evt) {
|
|
$(".fwdragger").off("touchmove").on("touchmove", function(evt) {
|
|
evt.preventDefault();
|
|
evt.preventDefault();
|
|
evt.stopImmediatePropagation();
|
|
evt.stopImmediatePropagation();
|
|
fwmove($(this).parent(), evt);
|
|
fwmove($(this).parent(), evt);
|
|
});
|
|
});
|
|
|
|
+
|
|
$(".fwdragger").off("touchend").on("touchend", function(evt) {
|
|
$(".fwdragger").off("touchend").on("touchend", function(evt) {
|
|
evt.preventDefault();
|
|
evt.preventDefault();
|
|
evt.stopImmediatePropagation();
|
|
evt.stopImmediatePropagation();
|
|
@@ -2379,7 +2385,9 @@
|
|
top: "0px"
|
|
top: "0px"
|
|
});
|
|
});
|
|
$(fw).attr("max", "true");
|
|
$(fw).attr("max", "true");
|
|
- $(fw).find(".maxToogleButton").attr('src', "img/system/restore.svg")
|
|
|
|
|
|
+ $(fw).find(".maxToogleButton").attr('src', "img/system/restore.svg");
|
|
|
|
+ $(fw).find(".dockright").addClass("disabled");
|
|
|
|
+ $(fw).find(".dockleft").addClass("disabled");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|