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
5427385a
"tests/parser_csv.test" did not exist on "ce5fedb6ced40e788def3baf5c8382baceabf208"
Commit
5427385a
authored
15 years ago
by
Earl Miles
Browse files
Options
Downloads
Patches
Plain Diff
Resize the modal with the browser window.
parent
4258b860
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
js/modal.js
+16
-8
16 additions, 8 deletions
js/modal.js
with
16 additions
and
8 deletions
js/modal.js
+
16
−
8
View file @
5427385a
...
...
@@ -17,19 +17,27 @@ Drupal.CTools.Modal = Drupal.CTools.Modal || {};
* Display the modal
*/
Drupal
.
CTools
.
Modal
.
show
=
function
()
{
var
resize
=
function
(
e
)
{
// For reasons I do not understand, when creating the modal the context must be
// Drupal.CTools.Modal.modal but otherwise the context must be more than that.
var
context
=
e
?
document
:
Drupal
.
CTools
.
Modal
.
modal
;
$
(
'
div.ctools-modal-content
'
,
context
).
css
({
'
width
'
:
$
(
window
).
width
()
*
.
8
+
'
px
'
,
'
height
'
:
$
(
window
).
height
()
*
.
8
+
'
px
'
});
$
(
'
div.ctools-modal-content .modal-content
'
,
context
).
css
({
'
width
'
:
(
$
(
window
).
width
()
*
.
8
-
25
)
+
'
px
'
,
'
height
'
:
(
$
(
window
).
height
()
*
.
8
-
22
)
+
'
px
'
});
}
if
(
!
Drupal
.
CTools
.
Modal
.
modal
)
{
Drupal
.
CTools
.
Modal
.
modal
=
$
(
Drupal
.
theme
(
'
CToolsModalDialog
'
));
$
(
window
).
bind
(
'
resize
'
,
resize
);
}
resize
();
$
(
'
span.modal-title
'
,
Drupal
.
CTools
.
Modal
.
modal
).
html
(
Drupal
.
t
(
'
Loading...
'
));
$
(
'
div.ctools-modal-content
'
,
Drupal
.
CTools
.
Modal
.
modal
).
css
({
'
width
'
:
$
(
window
).
width
()
*
.
8
+
'
px
'
,
'
height
'
:
$
(
window
).
height
()
*
.
8
+
'
px
'
});
$
(
'
div.ctools-modal-content .modal-content
'
,
Drupal
.
CTools
.
Modal
.
modal
).
css
({
'
width
'
:
(
$
(
window
).
width
()
*
.
8
-
25
)
+
'
px
'
,
'
height
'
:
(
$
(
window
).
height
()
*
.
8
-
22
)
+
'
px
'
});
Drupal
.
CTools
.
Modal
.
modal
.
modalContent
({
// @todo this should be elsewhere.
opacity
:
'
.40
'
,
...
...
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