Remove _list & Fix moveImage bug

This commit is contained in:
ckcz123 2018-12-23 14:54:48 +08:00
parent e388abfaa7
commit 4a44937e37

View File

@ -3173,7 +3173,7 @@ control.prototype.domRenderer = function(){
var ctx = core.dymCanvas[name], canvas = ctx.canvas;
canvas.style.width = canvas.width * core.domStyle.scale + "px";
canvas.style.height = canvas.height * core.domStyle.scale + "px";
canvas.style.left = parseFloat(canvas.getAttribute("_left")) * core.domStyle + "px";
canvas.style.top = parseFloat(canvas.getAttribute("_top")) * core.domStyle + "px";
canvas.style.left = parseFloat(canvas.getAttribute("_left")) * core.domStyle.scale + "px";
canvas.style.top = parseFloat(canvas.getAttribute("_top")) * core.domStyle.scale + "px";
}
}