summaryrefslogtreecommitdiffstats
path: root/htdocs/cropper/cropper.js
diff options
context:
space:
mode:
Diffstat (limited to 'htdocs/cropper/cropper.js')
-rw-r--r--htdocs/cropper/cropper.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/htdocs/cropper/cropper.js b/htdocs/cropper/cropper.js
index 486a92a..0e4ba7b 100644
--- a/htdocs/cropper/cropper.js
+++ b/htdocs/cropper/cropper.js
@@ -457,13 +457,15 @@ this.startCoords=this.cloneCoords(this.areaCoords);
this.resizing=true;
this.resizeHandle=Event.element(e).classNames().toString().replace(/([^N|NE|E|SE|S|SW|W|NW])+/,"");
Event.stop(e);
-},startDrag:function(e){
+},startDrag:function(e){
+if(Event.isLeftClick(e)){
this.selArea.show();
this.clickCoords=this.getCurPos(e);
this.setAreaCoords({x1:this.clickCoords.x,y1:this.clickCoords.y,x2:this.clickCoords.x,y2:this.clickCoords.y},false,false,null);
this.dragging=true;
this.onDrag(e);
-Event.stop(e);
+Event.stop(e);
+}
},getCurPos:function(e){
var el=this.imgWrap,wrapOffsets=Position.cumulativeOffset(el);
while(el.nodeName!="BODY"){