Open good1515 opened 5 years ago
Zoom hide New features I have modified 3 places
file croppic.js
`
line 28 cropZoomControls:true,
line 407 if(that.options.cropZoomControls){ var cropControlZoomIn = '\'; var cropControlZoomOut = '\'; }else{ var cropControlZoomIn = ''; var cropControlZoomOut = ''; }
line 436 if(that.options.cropZoomControls){ that.cropControlZoomIn = that.cropControlsCrop.find('.cropControlZoomIn'); that.cropControlZoomIn.on('click',function(){ that.zoom(that.options.zoomFactor); }); } if(that.options.cropZoomControls){ that.cropControlZoomIn = that.cropControlsCrop.find('.cropControlRotateLeft'); that.cropControlZoomIn.on('click', function() { that.rotate(-that.options.rotateFactor); }); }
Zoom hide New features I have modified 3 places
file croppic.js
`
line 28 cropZoomControls:true,
line 407 if(that.options.cropZoomControls){ var cropControlZoomIn = '\'; var cropControlZoomOut = '\'; }else{ var cropControlZoomIn = ''; var cropControlZoomOut = ''; }
line 436 if(that.options.cropZoomControls){ that.cropControlZoomIn = that.cropControlsCrop.find('.cropControlZoomIn'); that.cropControlZoomIn.on('click',function(){ that.zoom(that.options.zoomFactor); }); } if(that.options.cropZoomControls){ that.cropControlZoomIn = that.cropControlsCrop.find('.cropControlRotateLeft'); that.cropControlZoomIn.on('click', function() { that.rotate(-that.options.rotateFactor); }); }
`