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
2c8fc1a0
Commit
2c8fc1a0
authored
Jun 03, 2011
by
Ole Laursen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix missing ; (reported by getify, issue 518)
parent
c1d4516c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
jquery.flot.js
jquery.flot.js
+3
-3
No files found.
jquery.flot.js
View file @
2c8fc1a0
...
...
@@ -446,7 +446,7 @@
// vary color if needed
var
sign
=
variation
%
2
==
1
?
-
1
:
1
;
c
.
scale
(
'rgb'
,
1
+
sign
*
Math
.
ceil
(
variation
/
2
)
*
0.2
)
c
.
scale
(
'rgb'
,
1
+
sign
*
Math
.
ceil
(
variation
/
2
)
*
0.2
)
;
// FIXME: if we're getting to close to something else,
// we should probably skip this one
...
...
@@ -932,7 +932,7 @@
var
innermost
=
$
.
inArray
(
axis
,
sameDirection
)
==
0
;
if
(
innermost
)
tickLength
=
"full"
tickLength
=
"full"
;
else
tickLength
=
5
;
}
...
...
@@ -2562,7 +2562,7 @@
if
(
typeof
c
!=
"string"
)
{
var
co
=
$
.
color
.
parse
(
defaultColor
);
if
(
c
.
brightness
!=
null
)
co
=
co
.
scale
(
'rgb'
,
c
.
brightness
)
co
=
co
.
scale
(
'rgb'
,
c
.
brightness
)
;
if
(
c
.
opacity
!=
null
)
co
.
a
*=
c
.
opacity
;
c
=
co
.
toString
();
...
...
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