Skip to content
Snippets Groups Projects
Commit c7f62f22 authored by Devin Carlson's avatar Devin Carlson
Browse files

Issue #3484715: Remove unused filter_css_alter()

parent 07ad8075
No related branches found
No related tags found
1 merge request!4Removed unused filter_css_alter().
Pipeline #325378 passed with warnings
......@@ -64,21 +64,6 @@ function filter_js_alter(&$javascript) {
}
}
/**
* Implements hook_css_alter() on behalf of filter.module.
*
* Replace Filter's CSS files with more fully-featured alternatives.
*/
function filter_css_alter(&$css) {
// Replace filter.css.
$path = drupal_get_path('module', 'filter') . '/filter.css';
if (isset($javascript[$path])) {
$css[$path]['data'] = drupal_get_path('module', 'editor') . '/css/filter.css';
$css[$path]['type'] = 'file';
}
}
/**
* Implements hook_form_FORM_ID_alter().
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment