Toggle navigation
Toggle navigation
This project
Loading...
Sign in
은승우
/
LINEBOT
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
은승우
2019-12-05 22:34:45 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
654f81a20af86f56f76c9cd680a082290fff7286
654f81a2
1 parent
3f464218
131412
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
concert.js
concert.js
View file @
654f81a
...
...
@@ -109,7 +109,8 @@ function handleEvent(event) {
var
selectnum
=
(
event
.
message
.
text
.
substr
(
0
,
2
)
*
1
);
var
result
=
{
type
:
'text'
,
text
:
''
};
if
(
selectnum
>=
0
||
selectnum
<=
27
){
console
.
log
(
selectnum
);
if
(
selectnum
<=
0
||
selectnum
>=
27
){
result
.
text
=
'목록에 존재하지 않는 콘서트입니다.'
;
return
;
}
...
...
Please
register
or
login
to post a comment