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
0c2f6e30
Commit
0c2f6e30
authored
Oct 14, 2013
by
David Schnur
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Slight cleanup / optimization for #1084.
parent
82f28d28
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
jquery.colorhelpers.js
jquery.colorhelpers.js
+3
-7
No files found.
jquery.colorhelpers.js
View file @
0c2f6e30
...
@@ -74,19 +74,15 @@
...
@@ -74,19 +74,15 @@
// if it's "transparent"
// if it's "transparent"
$
.
color
.
extract
=
function
(
elem
,
css
)
{
$
.
color
.
extract
=
function
(
elem
,
css
)
{
var
c
;
var
c
;
var
parentElm
;
do
{
do
{
c
=
elem
.
css
(
css
).
toLowerCase
();
c
=
elem
.
css
(
css
).
toLowerCase
();
// keep going until we find an element that has color, or
// keep going until we find an element that has color, or
// we hit the body or root (have no parent)
// we hit the body or root (have no parent)
if
(
c
!=
''
&&
c
!=
'transparent'
)
if
(
c
!=
''
&&
c
!=
'transparent'
)
break
;
break
;
parentElm
=
elem
.
parent
();
elem
=
elem
.
parent
();
if
(
null
==
parentElm
.
get
(
0
))
{
}
while
(
elem
.
length
&&
!
$
.
nodeName
(
elem
.
get
(
0
),
"body"
));
break
;
}
elem
=
parentElm
;
}
while
(
!
$
.
nodeName
(
elem
.
get
(
0
),
"body"
));
// catch Safari's way of signalling transparent
// catch Safari's way of signalling transparent
if
(
c
==
"rgba(0, 0, 0, 0)"
)
if
(
c
==
"rgba(0, 0, 0, 0)"
)
...
...
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