summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module16
1 files changed, 14 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index b54750aea..636ce7f30 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -1056,6 +1056,19 @@ function system_library() {
),
);
+ // Contextual links.
+ $libraries['contextual-links'] = array(
+ 'title' => 'Contextual links',
+ 'website' => 'http://drupal.org/node/473268',
+ 'version' => '1.0',
+ 'js' => array(
+ 'misc/contextual_links.js' => array(),
+ ),
+ 'css' => array(
+ 'misc/contextual_links.css' => array(),
+ ),
+ );
+
// Vertical Tabs.
$libraries['vertical-tabs'] = array(
'title' => 'Vertical Tabs',
@@ -3613,8 +3626,7 @@ function system_build_contextual_links($element) {
'#links' => $links,
'#attributes' => array('class' => array('contextual-links')),
'#attached' => array(
- 'js' => array('misc/contextual_links.js'),
- 'css' => array('misc/contextual_links.css'),
+ 'library' => array(array('system', 'contextual-links')),
),
);
}