@thinkpixellab-public/px-vue 3.0.15 → 3.0.16
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/components/PxFloat.vue +0 -2
- package/package.json +1 -1
package/components/PxFloat.vue
CHANGED
|
@@ -488,13 +488,11 @@ export default {
|
|
|
488
488
|
// previous sibling
|
|
489
489
|
if (reference == 'previous') {
|
|
490
490
|
reference = this.$el.previousElementSibling;
|
|
491
|
-
console.log(reference);
|
|
492
491
|
}
|
|
493
492
|
|
|
494
493
|
// next sibling
|
|
495
494
|
else if (reference == 'next') {
|
|
496
495
|
reference = this.$el.nextElementSibling;
|
|
497
|
-
console.log(reference);
|
|
498
496
|
}
|
|
499
497
|
|
|
500
498
|
// selector
|