fix a bug

This commit is contained in:
xing 2020-04-02 22:03:35 +08:00
parent fc33735ae2
commit 36f3a0d18e

View File

@ -458,7 +458,7 @@
li.addEventListener('touchend', evt => { li.addEventListener('touchend', evt => {
if ((endX - startX) > 100 && Math.abs(endY - startY) <= 100) { if ((endX - startX) > 100 && Math.abs(endY - startY) <= 100) {
let url = document.querySelector('li.tl_shadow>a[data-thread-type="0"]').dataset.url; let url = li.querySelector('li.tl_shadow>a[data-thread-type="0"]').dataset.url;
window.open(url, '_blank'); window.open(url, '_blank');
} }
if ((startX - endX) > 100 && Math.abs(endY - startY) <= 100) { if ((startX - endX) > 100 && Math.abs(endY - startY) <= 100) {