You are here

function entity_embed_editor_ckeditor_css_alter in Entity Embed 7.3

Implements hook_editor_ckeditor_css_alter().

File

./entity_embed.editor_ckeditor.inc, line 54
Editor CKEditor integration for the entity_embed module.

Code

function entity_embed_editor_ckeditor_css_alter(array &$css, $format) {

  // Add styles for handling contextual links.
  if (module_exists('contextual')) {
    $css[] = drupal_get_path('module', 'contextual') . '/contextual.css';
  }
}