Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ctools
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
ctools
Commits
c2134f65
Commit
c2134f65
authored
16 years ago
by
Earl Miles
Browse files
Options
Downloads
Patches
Plain Diff
Some minor cleanup of things broken by last commit.
parent
1b375298
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
css/context.css
+2
-2
2 additions, 2 deletions
css/context.css
includes/ajax.inc
+1
-1
1 addition, 1 deletion
includes/ajax.inc
includes/collapsible-div.inc
+2
-2
2 additions, 2 deletions
includes/collapsible-div.inc
includes/collapsible.theme.inc
+1
-1
1 addition, 1 deletion
includes/collapsible.theme.inc
with
6 additions
and
6 deletions
css/context.css
+
2
−
2
View file @
c2134f65
/* $Id$ */
.
pane
ls-context-holder
.
pane
ls-context-title
{
.
ctoo
ls-context-holder
.
ctoo
ls-context-title
{
float
:
left
;
width
:
49%
;
font-style
:
italic
;
}
.
pane
ls-context-holder
.
pane
ls-context-content
{
.
ctoo
ls-context-holder
.
ctoo
ls-context-content
{
float
:
right
;
width
:
49%
;
}
This diff is collapsed.
Click to expand it.
includes/ajax.inc
+
1
−
1
View file @
c2134f65
...
...
@@ -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.
* }
*/
...
...
This diff is collapsed.
Click to expand it.
includes/collapsible-div.inc
+
2
−
2
View file @
c2134f65
...
...
@@ -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
.
'">'
;
...
...
This diff is collapsed.
Click to expand it.
includes/collapsible.theme.inc
+
1
−
1
View file @
c2134f65
...
...
@@ -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'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment