Toggle navigation
Toggle navigation
This project
Loading...
Sign in
teamPARK
/
holiday-counter-recommend-activity
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
박종현
2022-05-30 23:12:16 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3357b05eaf02e94986b24a079fdcd86f4905fcd6
3357b05e
1 parent
743ce872
Update activity - rough version
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
1 deletions
nodejs/server.js
nodejs/views/data.ejs
nodejs/server.js
View file @
3357b05
...
...
@@ -40,7 +40,7 @@ function getTodayDate() {
var
month
=
(
"0"
+
(
today
.
getMonth
()
+
1
)).
slice
(
-
2
);
var
day
=
(
"0"
+
today
.
getDate
()).
slice
(
-
2
);
var
dateString
=
year
+
"-"
+
month
+
"-"
+
day
;
return
"202
2-06-06
"
;
// 테스트용 날짜를 입력하세요. 테스트가 끝나면 주석처리 하세요. ex) 2022-09-12, 2022-09-15, 2022-10-04
return
"202
3-01-21
"
;
// 테스트용 날짜를 입력하세요. 테스트가 끝나면 주석처리 하세요. ex) 2022-09-12, 2022-09-15, 2022-10-04
// return dateString;
}
...
...
nodejs/views/data.ejs
View file @
3357b05
This diff is collapsed. Click to expand it.
Please
register
or
login
to post a comment