Toggle navigation
Toggle navigation
This project
Loading...
Sign in
최현준
/
도와줘요 채팅맨
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Issues
1
Network
Create a new issue
Commits
Issue Boards
Authored by
최현준
2020-06-25 13:58:29 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8d6f658ed8090c4df311bbafed8304df61dc7bf9
8d6f658e
1 parent
2ccf529f
시간 부분 수정
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
app.js
app.js
View file @
8d6f658
...
...
@@ -313,10 +313,10 @@ function make_time()
var
temp
=
i
+
1
;
if
(
3
*
i
<=
hours
&&
3
*
temp
>=
hours
)
{
if
(
3
*
temp
-
1
<
10
)
value
.
hours
=
'0'
+
3
*
temp
-
1
;
if
(
3
*
i
-
1
<
10
)
value
.
hours
=
'0'
+
3
*
i
-
1
;
else
value
.
hours
=
3
*
temp
-
1
;
value
.
hours
=
3
*
i
-
1
;
value
.
hours
+=
'00'
;
break
;
}
...
...
Please
register
or
login
to post a comment