Skip to content
Snippets Groups Projects
Commit 8e0bcfef authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2411073 by Wim Leers: Fix documentation of hook_library_build_info()

parent ed7f9d9e
No related branches found
No related tags found
No related merge requests found
......@@ -175,7 +175,9 @@ function common_test_library_info_build() {
$libraries['dynamic_library'] = [
'version' => '1.0',
'css' => [
'common_test.css' => [],
'base' => [
'common_test.css' => [],
],
],
];
}
......
......@@ -750,7 +750,9 @@ function hook_library_info_build() {
'mymodule.zombie.min.js' => [],
],
'css' => [
'mymodule.zombie.min.css' => [],
'base' => [
'mymodule.zombie.min.css' => [],
],
],
];
}
......@@ -760,7 +762,9 @@ function hook_library_info_build() {
'mymodule.zombie.js' => [],
],
'css' => [
'mymodule.zombie.css' => [],
'base' => [
'mymodule.zombie.css' => [],
],
],
];
}
......@@ -776,7 +780,9 @@ function hook_library_info_build() {
'js/vampire.js' => [],
],
'css' => [
'css/vampire.css',
'base' => [
'css/vampire.css',
],
],
'dependencies' => [
'core/jquery',
......
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