Open inDream opened 10 years ago
I ran into this too. Although I went with a different solution: around like 511 I replaced
if (cache.hasIntent === false || cache.hasIntent === null)
with
if (!cache.intentChecked)
Both solution work, but I think it's better to set an init value for reference.
Currently
hasIntent
part ofdragging
would never entered as hasIntent isundefined
.