Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
T
Taiko Web
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Taiko Web
Commits
89f352bc
Commit
89f352bc
authored
Oct 14, 2018
by
LoveEevee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add an issue template translation
parent
a0635812
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
5 deletions
+9
-5
.github/ISSUE_TEMPLATE.md
.github/ISSUE_TEMPLATE.md
+1
-0
public/src/js/about.js
public/src/js/about.js
+6
-3
public/src/js/songselect.js
public/src/js/songselect.js
+2
-2
No files found.
.github/ISSUE_TEMPLATE.md
View file @
89f352bc
###### 下記の問題を説明してください。 スクリーンショットと診断情報を含めてください。
###### Describe the problem you are having below. Please include a screenshot and the diagnostic information.
###### Describe the problem you are having below. Please include a screenshot and the diagnostic information.
public/src/js/about.js
View file @
89f352bc
class
About
{
class
About
{
constructor
(
touchEnabled
){
constructor
(
touchEnabled
){
this
.
issueTemplate
=
"
###### Describe the problem you are having below. Please include a screenshot and the diagnostic information.
"
this
.
issueTemplate
=
[
"
###### 下記の問題を説明してください。 スクリーンショットと診断情報を含めてください。
"
,
"
###### Describe the problem you are having below. Please include a screenshot and the diagnostic information.
"
]
this
.
touchEnabled
=
touchEnabled
this
.
touchEnabled
=
touchEnabled
loader
.
changePage
(
"
about
"
)
loader
.
changePage
(
"
about
"
)
...
@@ -115,7 +118,7 @@ class About{
...
@@ -115,7 +118,7 @@ class About{
}
}
}
}
var
issueBody
=
this
.
issueTemplate
+
"
\n\n\n\n
"
+
diag
var
issueBody
=
this
.
issueTemplate
.
join
(
"
\n
"
)
+
"
\n\n\n\n
"
+
diag
this
.
getLink
(
this
.
linkGithub
).
href
+=
"
?body=
"
+
encodeURIComponent
(
issueBody
)
this
.
getLink
(
this
.
linkGithub
).
href
+=
"
?body=
"
+
encodeURIComponent
(
issueBody
)
this
.
getLink
(
this
.
linkEmail
).
href
+=
"
?body=
"
+
encodeURIComponent
(
issueBody
.
replace
(
/
\n
/g
,
"
\r\n
"
))
this
.
getLink
(
this
.
linkEmail
).
href
+=
"
?body=
"
+
encodeURIComponent
(
issueBody
.
replace
(
/
\n
/g
,
"
\r\n
"
))
}
}
...
...
public/src/js/songselect.js
View file @
89f352bc
...
@@ -169,8 +169,8 @@ class SongSelect{
...
@@ -169,8 +169,8 @@ class SongSelect{
this
.
selectedDiff
=
0
this
.
selectedDiff
=
0
assets
.
sounds
[
"
bgm_songsel
"
].
playLoop
(
0.1
,
false
,
0
,
1.442
,
3.506
)
assets
.
sounds
[
"
bgm_songsel
"
].
playLoop
(
0.1
,
false
,
0
,
1.442
,
3.506
)
if
(
!
touchEnabled
&&
!
fromTutorial
&&
!
(
"
selectedSong
"
in
localStorage
)){
if
(
!
fromTutorial
&&
!
(
"
selectedSong
"
in
localStorage
)){
fromTutorial
=
"
tutorial
"
fromTutorial
=
touchEnabled
?
"
about
"
:
"
tutorial
"
}
}
if
(
fromTutorial
){
if
(
fromTutorial
){
...
...
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