We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getElemCacheIndex may return null
getElemCacheIndex
vue2 called doUnbindEvent more than once
cause destroyed other instance
https://github.com/AlloyTeam/AlloyFinger/blob/master/vue/alloy_finger.vue.js#L93-L98
if(!isNaN(index)) { var delArr = CACHE.splice(index, 1); if(delArr.length && delArr[0] && delArr[0].alloyFinger.destroy) { delArr[0].alloyFinger.destroy(); } }
should be
if(!isNaN(index) && index!==null) { var delArr = CACHE.splice(index, 1); if(delArr.length && delArr[0] && delArr[0].alloyFinger.destroy) { delArr[0].alloyFinger.destroy(); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
getElemCacheIndex
may return nullvue2 called doUnbindEvent more than once
cause destroyed other instance
https://github.com/AlloyTeam/AlloyFinger/blob/master/vue/alloy_finger.vue.js#L93-L98
should be
The text was updated successfully, but these errors were encountered: