You are here

function media_ckeditor_js_alter in Media CKEditor 7

Implements hook_js_alter().

@todo: remove this when https://www.drupal.org/node/2542566 is fixed.

File

./media_ckeditor.module, line 13
Primarily Drupal hooks.

Code

function media_ckeditor_js_alter(&$javascript) {
  $path = drupal_get_path('module', 'ckeditor') . '/plugins/media/library.js';

  // Remove the default CKEditor Media plugin library JS.
  if (isset($javascript[$path])) {
    unset($javascript[$path]);
  }
}