Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
F
flot
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
HS-public
flot
Commits
82f28d28
Commit
82f28d28
authored
Oct 14, 2013
by
David Schnur
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1084 from execjosh/stop-also-at-root-element
Also stop at root when extracting CSS color
parents
836c9f15
c8c67de8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
jquery.colorhelpers.js
jquery.colorhelpers.js
+7
-2
No files found.
jquery.colorhelpers.js
View file @
82f28d28
...
...
@@ -74,13 +74,18 @@
// if it's "transparent"
$
.
color
.
extract
=
function
(
elem
,
css
)
{
var
c
;
var
parentElm
;
do
{
c
=
elem
.
css
(
css
).
toLowerCase
();
// keep going until we find an element that has color, or
// we hit the body
// we hit the body
or root (have no parent)
if
(
c
!=
''
&&
c
!=
'transparent'
)
break
;
elem
=
elem
.
parent
();
parentElm
=
elem
.
parent
();
if
(
null
==
parentElm
.
get
(
0
))
{
break
;
}
elem
=
parentElm
;
}
while
(
!
$
.
nodeName
(
elem
.
get
(
0
),
"body"
));
// catch Safari's way of signalling transparent
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment