You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 407
if(that.options.cropZoomControls){
var cropControlZoomIn = '<i class="cropControlZoomIn">';
var cropControlZoomOut = '<i class="cropControlZoomOut">';
}else{
var cropControlZoomIn = '';
var cropControlZoomOut = '';
}
Zoom hide
New features I have modified 3 places
file croppic.js
`
line 28
cropZoomControls:true,
line 407
if(that.options.cropZoomControls){
var cropControlZoomIn = '<i class="cropControlZoomIn">';
var cropControlZoomOut = '<i class="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); });
}
`
The text was updated successfully, but these errors were encountered: