Skip to content
Snippets Groups Projects
Commit c2134f65 authored by Earl Miles's avatar Earl Miles
Browse files

Some minor cleanup of things broken by last commit.

parent 1b375298
No related branches found
No related tags found
No related merge requests found
/* $Id$ */
.panels-context-holder .panels-context-title {
.ctools-context-holder .ctools-context-title {
float: left;
width: 49%;
font-style: italic;
}
.panels-context-holder .panels-context-content {
.ctools-context-holder .ctools-context-content {
float: right;
width: 49%;
}
......@@ -41,7 +41,7 @@
* @code{
* $commands = array();
* $commands[] = ctools_ajax_command_replace('#ctools-object-1', 'some html here');
* $commands[] = ctools_ajax_command_add
* $commands[] = ctools_ajax_command_changed('#ctools-object-1');
* ctools_ajax_render($commands); // this function exits.
* }
*/
......
......@@ -11,8 +11,8 @@
*/
function theme_ctools_collapsible($handle, $content, $collapsed = FALSE) {
drupal_add_js(drupal_get_path('module', 'ctools') . '/js/collapsible-div.js');
drupal_add_css(drupal_get_path('module', 'ctools') . '/css/collapsible-div.css');
ctools_add_js('collapsible-div');
ctools_add_css('collapsible-div');
$class = $collapsed ? ' ctools-collapsed' : '';
$output = '<div class="ctools-collapsible-container' . $class . '">';
......
......@@ -5,7 +5,7 @@
* @file
* Theme registry for collapsible-div tool.
*/
function ctools_collapsible_theme($items) {
function ctools_collapsible_theme(&$items) {
$items['ctools_collapsible'] = array(
'arguments' => array('handle' => NULL, 'content' => NULL, 'collapsed' => FALSE),
'file' => 'includes/collapsible-div.inc',
......
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