GetmeUK / ContentTools

A JS library for building WYSIWYG editors for HTML content.
http://getcontenttools.com
MIT License
3.94k stars 393 forks source link

[Question] Disable crop and rotate in image upload dialog? #544

Closed vfsoraki closed 4 years ago

vfsoraki commented 4 years ago

Is it possible?

I didn't find anything in documentations.

anthonyjb commented 4 years ago

Simplest solution for disabling tools in the image dialog is just to hide them with CSS, like so:

.ct-control--crop,
.ct-control--rotate-cw,
.ct-control--rotate-ccw {
    display: none !important;
}

P.S sorry for the late reply.