I noticed that we cannot scroll the web page by reading our fingers on mobile devices where we used the Canvas associated with Fabric full screen.
The problem I am due to canvase is not allowing the page to scroll, how can I fix it.
url: http://dev-shree.com/sendfile/
check mobile browsing.
Is there any way to fix this.
my code to protect the site:
(function(global) {
"use strict";
var canvas = new fabric.Canvas('canvas',{selection : false,controlsAboveOverlay:true,centeredScaling:true});
var overlayimageurl = $('#myimg').val();
canvas.setOverlayImage(overlayimageurl, canvas.renderAll.bind(canvas));
canvas.stateful = false;
source
share