@phoenix-cg/v-tabs 0.1.32 → 0.1.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phoenix-cg/v-tabs",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -128,11 +128,11 @@ export default {
128
128
  },
129
129
  createHintObserver () {
130
130
  if (this.hintShowCondition) {
131
- this.hintObserver = new IntersectionObserver(entries => {
131
+ this.hintObserver = new IntersectionObserver((entries, observer) => {
132
132
  entries.forEach(entry => {
133
133
  if (entry.isIntersecting) {
134
134
  this.queueShowHint()
135
- this.hintObserver.disconnect()
135
+ observer.disconnect()
136
136
  this.hintObserver = null
137
137
  }
138
138
  })