タップ不可能なリアクションを押してもパーティクルが出るバグを修正 (#6472)

* resolve #6453

* リアクションビューワーのトグル可能判定にログインしているかどうかも反映
This commit is contained in:
Xeltica 2020-06-21 22:34:28 +09:00 committed by GitHub
parent 8dbdab4a47
commit aa652aac8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 7 deletions

View file

@ -2,6 +2,8 @@ import Particle from '../components/particle.vue';
export default {
bind(el, binding, vn) {
// 明示的に false であればバインドしない
if (binding.value === false) return;
el.addEventListener('click', () => {
const rect = el.getBoundingClientRect();