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
8e2f09a9
Commit
8e2f09a9
authored
Sep 28, 2013
by
David Schnur
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1141 from nschonni/0.9-jshint-indent4
0.9 jshint indent4
parents
d76e1cb2
678ff275
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
95 additions
and
63 deletions
+95
-63
.jshintrc
.jshintrc
+2
-1
jquery.flot.js
jquery.flot.js
+43
-43
jquery.flot.time.js
jquery.flot.time.js
+50
-19
No files found.
.jshintrc
View file @
8e2f09a9
...
...
@@ -19,5 +19,6 @@
},
"browser": true,
"jquery": true
"jquery": true,
"indent": 4
}
jquery.flot.js
View file @
8e2f09a9
jquery.flot.time.js
View file @
8e2f09a9
...
...
@@ -69,25 +69,56 @@ API.txt for details.
if
(
escape
)
{
switch
(
c
)
{
case
"a"
:
c
=
""
+
dayNames
[
d
.
getDay
()];
break
;
case
"b"
:
c
=
""
+
monthNames
[
d
.
getMonth
()];
break
;
case
"d"
:
c
=
leftPad
(
d
.
getDate
());
break
;
case
"e"
:
c
=
leftPad
(
d
.
getDate
(),
" "
);
break
;
case
"a"
:
c
=
""
+
dayNames
[
d
.
getDay
()];
break
;
case
"b"
:
c
=
""
+
monthNames
[
d
.
getMonth
()];
break
;
case
"d"
:
c
=
leftPad
(
d
.
getDate
());
break
;
case
"e"
:
c
=
leftPad
(
d
.
getDate
(),
" "
);
break
;
case
"h"
:
// For back-compat with 0.7; remove in 1.0
case
"H"
:
c
=
leftPad
(
hours
);
break
;
case
"I"
:
c
=
leftPad
(
hours12
);
break
;
case
"l"
:
c
=
leftPad
(
hours12
,
" "
);
break
;
case
"m"
:
c
=
leftPad
(
d
.
getMonth
()
+
1
);
break
;
case
"M"
:
c
=
leftPad
(
d
.
getMinutes
());
break
;
case
"H"
:
c
=
leftPad
(
hours
);
break
;
case
"I"
:
c
=
leftPad
(
hours12
);
break
;
case
"l"
:
c
=
leftPad
(
hours12
,
" "
);
break
;
case
"m"
:
c
=
leftPad
(
d
.
getMonth
()
+
1
);
break
;
case
"M"
:
c
=
leftPad
(
d
.
getMinutes
());
break
;
// quarters not in Open Group's strftime specification
case
"q"
:
c
=
""
+
(
Math
.
floor
(
d
.
getMonth
()
/
3
)
+
1
);
break
;
case
"S"
:
c
=
leftPad
(
d
.
getSeconds
());
break
;
case
"y"
:
c
=
leftPad
(
d
.
getFullYear
()
%
100
);
break
;
case
"Y"
:
c
=
""
+
d
.
getFullYear
();
break
;
case
"p"
:
c
=
(
isAM
)
?
(
""
+
"am"
)
:
(
""
+
"pm"
);
break
;
case
"P"
:
c
=
(
isAM
)
?
(
""
+
"AM"
)
:
(
""
+
"PM"
);
break
;
case
"w"
:
c
=
""
+
d
.
getDay
();
break
;
c
=
""
+
(
Math
.
floor
(
d
.
getMonth
()
/
3
)
+
1
);
break
;
case
"S"
:
c
=
leftPad
(
d
.
getSeconds
());
break
;
case
"y"
:
c
=
leftPad
(
d
.
getFullYear
()
%
100
);
break
;
case
"Y"
:
c
=
""
+
d
.
getFullYear
();
break
;
case
"p"
:
c
=
(
isAM
)
?
(
""
+
"am"
)
:
(
""
+
"pm"
);
break
;
case
"P"
:
c
=
(
isAM
)
?
(
""
+
"AM"
)
:
(
""
+
"PM"
);
break
;
case
"w"
:
c
=
""
+
d
.
getDay
();
break
;
}
r
.
push
(
c
);
escape
=
false
;
...
...
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