* issues #1019 的迫真修复

* 修复 issues #1019

* 修复 issues #1019

* 改回 pickedLyric() 逻辑

* 更进一步的避免取词卡死问题

* 更新网易云 api 到 4.2.0

* Update README.md

* Revert "Update README.md"

This reverts commit b862ef7d4dabd40c8fe57e4837fc6220806a1456.

* Update lyrics.vue
master
是虹川飴 3 years ago committed by GitHub
parent d322a29b72
commit e9d9c3aee8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save