Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
24db763b
Commit
24db763b
authored
14 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#787940
by casey, Kiphaas7: generic approach for position:fixed elements like toolbar.
parent
e14705f4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
misc/displace.js
+5
-12
5 additions, 12 deletions
misc/displace.js
misc/drupal.js
+18
-0
18 additions, 0 deletions
misc/drupal.js
with
23 additions
and
12 deletions
misc/displace.js
+
5
−
12
View file @
24db763b
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
/**
/**
* Provides a generic method to position elements fixed to the viewport.
* Provides a generic method to position elements fixed to the viewport.
*
*
* Fixed positioning (CSS declaration position:fixed) is done relative
ly
to the
* Fixed positioning (CSS declaration position:fixed) is done relative to the
* viewport. This makes it hard to position multiple fixed positioned element
* viewport. This makes it hard to position multiple fixed positioned element
* relative to each other (e.g. multiple toolbars should come after each other,
* relative to each other (e.g. multiple toolbars should come after each other,
* not on top of each other).
* not on top of each other).
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* port add the class "displace-bottom".
* port add the class "displace-bottom".
*
*
* When a browser doesn't support position:fixed (like IE6) the element gets
* When a browser doesn't support position:fixed (like IE6) the element gets
* positioned absolutely by default, but this can be overriden by using the
* positioned absolutely by default, but this can be overrid
d
en by using the
* "displace-unsupported" class.
* "displace-unsupported" class.
*/
*/
...
@@ -23,16 +23,9 @@
...
@@ -23,16 +23,9 @@
*/
*/
Drupal
.
behaviors
.
displace
=
{
Drupal
.
behaviors
.
displace
=
{
attach
:
function
(
context
,
settings
)
{
attach
:
function
(
context
,
settings
)
{
// Test for position:fixed support as IE6 does not.
// Test for position:fixed support.
// http://yura.thinkweb2.com/cft/#IS_POSITION_FIXED_SUPPORTED
if
(
!
Drupal
.
positionFixedSupported
())
{
if
(
this
.
supported
===
undefined
)
{
$
(
document
.
documentElement
).
addClass
(
'
displace-unsupported
'
);
var
el
=
$
(
'
<div style="position:fixed;top:10px"/>
'
).
appendTo
(
document
.
body
);
this
.
supported
=
el
[
0
].
offsetTop
===
10
;
el
.
remove
();
if
(
!
this
.
supported
)
{
$
(
document
.
documentElement
).
addClass
(
'
displace-unsupported
'
);
}
}
}
$
(
document
.
body
).
once
(
'
displace
'
,
function
()
{
$
(
document
.
body
).
once
(
'
displace
'
,
function
()
{
...
...
This diff is collapsed.
Click to expand it.
misc/drupal.js
+
18
−
0
View file @
24db763b
...
@@ -299,6 +299,24 @@ Drupal.getSelection = function (element) {
...
@@ -299,6 +299,24 @@ Drupal.getSelection = function (element) {
return
{
'
start
'
:
element
.
selectionStart
,
'
end
'
:
element
.
selectionEnd
};
return
{
'
start
'
:
element
.
selectionStart
,
'
end
'
:
element
.
selectionEnd
};
};
};
/**
* Checks if position:fixed is supported.
*
* @return
* Boolean indicating whether or not position:fixed is supported.
*
* @see http://yura.thinkweb2.com/cft/#IS_POSITION_FIXED_SUPPORTED
*/
Drupal
.
positionFixedSupported
=
function
()
{
if
(
this
.
_positionFixedSupported
===
undefined
)
{
var
el
=
$
(
'
<div style="position:fixed; top:10px" />
'
).
appendTo
(
document
.
body
);
this
.
_positionFixedSupported
=
el
[
0
].
offsetTop
===
10
;
el
.
remove
();
}
return
this
.
_positionFixedSupported
;
};
/**
/**
* Build an error message from an AJAX response.
* Build an error message from an AJAX response.
*/
*/
...
...
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