This was something that was requested in https://github.com/backdrop/backdrop-issues/issues/1087#issuecomment-172...
https://ckeditor.com/cke4/addon/autogrow
With this plugin, CKEditor will automatically expand and shrink vertically depending on the amount and size of content entered in its editing area.
The following configuration options are available:
- maximum and minimum editor height after adjustment to content,
- extra space to be added between content and editor bottom bar,
- having auto grow happen on editor startup
GitHub Issue #:
3354
Recent comments
The block system and API in Backdrop is very different from Drupal's. In Backdrop, as in Drupal, modules can define blocks in code (in fact some of the API at this level is the same, with...
Drupal block module conversion
This was from examining line 2463- of the webform.module, where // Attach necessary JavaScript and CSS. $form['#attached'] = array( 'css' => array(backdrop_get_path('module', 'webform...
How do I diagnose Webform Conditionals failing?
d'oh. Because of course it is reassigning. Don't mind me... the correct syntax is $form['#attached']['js'][] = backdrop_get_path('module', 'mymodule') . '/mymodule.js';
How do I diagnose Webform Conditionals failing?