Missing textarea class in Editor Bootstrap

Missing textarea class in Editor Bootstrap

aachevalieraachevalier Posts: 8Questions: 0Answers: 0

The form-control class is added on inputs and select boxes but not on textareas. So they don't get the bootstrap style.

Replies

  • allanallan Posts: 61,650Questions: 1Answers: 10,094 Site admin
    edited March 2015

    Thanks for pointing that out!

    In the editor.bootstrap.js file there are two instances of:

    $('input[type=text], select', self._dom.form).addClass( 'form-control' );

    Adding textarea to the selector fixes that.

    The fix will be in the next release.

    Regards,
    Allan

  • aachevalieraachevalier Posts: 8Questions: 0Answers: 0

    Thanks Allan! :)

This discussion has been closed.