jquery-cropbox
jquery-cropbox copied to clipboard
Can't to disable controls
"Use false to disable controls."
I call $('img').cropbox({..., controls: false}) but controls appended anyway.
It's possible to prevent appending controls with $('img').cropbox({..., controls: ' '}), but this looks like the hack.
You are suppose to do something like this $('#postcar_image').cropbox({ width: w, height: h showControls: 'never' })
showControls: never just hides default controls, but it does not prevents the appending controls to DOM. Anyway, the issue is about that documented feature does not work.