このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
サインイン
aagez
/
nexus-timers
ウォッチ
1
スター
1
フォーク
0
コード
課題
4
プルリクエスト
0
リリース
0
Wiki
アクティビティ
ソースを参照
🐛
: fix timer drop to negative if reset time is 0
master
Adrien
4年前
親
04637fdd91
コミット
a7f468888b
1個のファイルの変更
、
2行の追加
、
1行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+2
-1
src/components/Battleground/Timer.vue
+ 2
- 1
src/components/Battleground/Timer.vue
ファイルの表示
@@ -18,9 +18,10 @@
startTimer: function () {
this.stopTimer()
this.timerIntervalId = setInterval(() => {
this.currentTime--
if (this.currentTime === 0) {
this.stopTimer()
} else {
this.currentTime--
}
}, 1000)
},
書き込み
プレビュー
読み込み中…
キャンセル
保存