You are here

function n1ed_library_info_alter in N1ED - Visual editor as CKEditor plugin with Bootstrap support 8.2

Implements hook_library_info_alter().

File

./n1ed.module, line 148
Main code for N1ED module.

Code

function n1ed_library_info_alter(&$libraries, $extension) {
  if ($extension === 'ckeditor' && isset($libraries['drupal.ckeditor'])) {
    $libraries['drupal.ckeditor']['dependencies'][] = 'n1ed/n1ed.loading';
  }
}