rcrop icon indicating copy to clipboard operation
rcrop copied to clipboard

How to activate/deactivate rcrop on a image?

Open ditlef9 opened this issue 2 years ago • 0 comments

Is it possible to somehow unload rcrop on a image? I tried to set the grid to false, but that doesnt help. How can I deactivate rcrop on a image?


<script>
$(document).ready(function(){
		// Activate or deactivate crop
		var cropIsActive = 1; // some variable that holds the state
		if(cropIsActive === '1'){
			$('#imgx').rcrop({
				grid : true
			});

		}
		else{
			$('#imgx').rcrop({
				grid : false
			});
		}
});
</script>

ditlef9 avatar Apr 20 '22 07:04 ditlef9