mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-02-16 23:02:49 +08:00
* issues #1019 的迫真修复
* 修复 issues #1019
* 修复 issues #1019
* 改回 pickedLyric() 逻辑
* 更进一步的避免取词卡死问题
* 更新网易云 api 到 4.2.0
* Update README.md
* Revert "Update README.md"
This reverts commit b862ef7d4d
.
* Update lyrics.vue
This commit is contained in:
parent
d322a29b72
commit
e9d9c3aee8
|
@ -338,7 +338,13 @@ export default {
|
|||
},
|
||||
clickLyricLine(value, startPlay = false) {
|
||||
// TODO: 双击选择还会选中文字,考虑搞个右键菜单复制歌词
|
||||
if (window.getSelection().toString().length === 0) {
|
||||
let jumpFlag = false;
|
||||
this.lyric.filter(function (item) {
|
||||
if (item.content == '纯音乐,请欣赏') {
|
||||
jumpFlag = true;
|
||||
}
|
||||
});
|
||||
if (window.getSelection().toString().length === 0 && !jumpFlag) {
|
||||
this.player.seek(value);
|
||||
}
|
||||
if (startPlay === true) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user