remove 'skip non action phases' toggle
This commit is contained in:
parent
ac0116fc52
commit
b43d45ecc6
4 changed files with 2 additions and 15 deletions
File diff suppressed because one or more lines are too long
|
|
@ -4,7 +4,7 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
|
|
||||||
<title>🧩 jigsaw.hyottoko.club</title>
|
<title>🧩 jigsaw.hyottoko.club</title>
|
||||||
<script type="module" crossorigin src="/assets/index.4ec065c1.js"></script>
|
<script type="module" crossorigin src="/assets/index.31475a28.js"></script>
|
||||||
<link rel="modulepreload" href="/assets/vendor.684f7bc8.js">
|
<link rel="modulepreload" href="/assets/vendor.684f7bc8.js">
|
||||||
<link rel="stylesheet" href="/assets/index.d345f13f.css">
|
<link rel="stylesheet" href="/assets/index.d345f13f.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
|
||||||
|
|
@ -528,10 +528,6 @@ export async function main(
|
||||||
doSetSpeedStatus()
|
doSetSpeedStatus()
|
||||||
}
|
}
|
||||||
|
|
||||||
const replayOnSkipToggle = () => {
|
|
||||||
REPLAY.skipNonActionPhases = !REPLAY.skipNonActionPhases
|
|
||||||
}
|
|
||||||
|
|
||||||
const intervals: NodeJS.Timeout[] = []
|
const intervals: NodeJS.Timeout[] = []
|
||||||
let to: NodeJS.Timeout
|
let to: NodeJS.Timeout
|
||||||
const clearIntervals = () => {
|
const clearIntervals = () => {
|
||||||
|
|
@ -926,7 +922,6 @@ export async function main(
|
||||||
replayOnSpeedUp,
|
replayOnSpeedUp,
|
||||||
replayOnSpeedDown,
|
replayOnSpeedDown,
|
||||||
replayOnPauseToggle,
|
replayOnPauseToggle,
|
||||||
replayOnSkipToggle,
|
|
||||||
previewImageUrl,
|
previewImageUrl,
|
||||||
player: {
|
player: {
|
||||||
background: playerBgColor(),
|
background: playerBgColor(),
|
||||||
|
|
|
||||||
|
|
@ -12,12 +12,6 @@
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
<div>{{replayText}}</div>
|
<div>{{replayText}}</div>
|
||||||
<div>
|
|
||||||
<label>Skip no action phases: <input
|
|
||||||
type="checkbox"
|
|
||||||
v-model="skipNoAction"
|
|
||||||
@change="g.replayOnSkipToggle()" /></label>
|
|
||||||
</div>
|
|
||||||
<button class="btn" @click="g.replayOnSpeedUp()">⏫</button>
|
<button class="btn" @click="g.replayOnSpeedUp()">⏫</button>
|
||||||
<button class="btn" @click="g.replayOnSpeedDown()">⏬</button>
|
<button class="btn" @click="g.replayOnSpeedDown()">⏬</button>
|
||||||
<button class="btn" @click="g.replayOnPauseToggle()">⏸️</button>
|
<button class="btn" @click="g.replayOnPauseToggle()">⏸️</button>
|
||||||
|
|
@ -66,7 +60,6 @@ export default defineComponent({
|
||||||
duration: 0,
|
duration: 0,
|
||||||
piecesDone: 0,
|
piecesDone: 0,
|
||||||
piecesTotal: 0,
|
piecesTotal: 0,
|
||||||
skipNoAction: true,
|
|
||||||
|
|
||||||
overlay: '',
|
overlay: '',
|
||||||
|
|
||||||
|
|
@ -90,7 +83,6 @@ export default defineComponent({
|
||||||
replayOnSpeedUp: () => {},
|
replayOnSpeedUp: () => {},
|
||||||
replayOnSpeedDown: () => {},
|
replayOnSpeedDown: () => {},
|
||||||
replayOnPauseToggle: () => {},
|
replayOnPauseToggle: () => {},
|
||||||
replayOnSkipToggle: () => {},
|
|
||||||
connect: () => {},
|
connect: () => {},
|
||||||
disconnect: () => {},
|
disconnect: () => {},
|
||||||
unload: () => {},
|
unload: () => {},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue