@canvas3/nuxt 0.1.17 → 0.1.18
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/dist/module.json
CHANGED
|
@@ -200,7 +200,6 @@ class Canvas3Class {
|
|
|
200
200
|
addOnScrollActivateElement(binding) {
|
|
201
201
|
const newBinding = generateBindingLogic(binding);
|
|
202
202
|
this.scroll?.DOM.onScrollActivateElements.push(newBinding);
|
|
203
|
-
console.log("this.scroll?.DOM.onScrollActivateElements", this.scroll?.DOM.onScrollActivateElements.length);
|
|
204
203
|
}
|
|
205
204
|
updateOnScrollActiveElement(updatedBinding) {
|
|
206
205
|
if (!this.scroll) return;
|
|
@@ -256,7 +255,6 @@ class Canvas3Class {
|
|
|
256
255
|
addAnimationToRender(callBackName, callBackFunction) {
|
|
257
256
|
if (this.animations.has(callBackName)) return;
|
|
258
257
|
this.animations.set(callBackName, callBackFunction);
|
|
259
|
-
console.log("addAnimationToRender", this.animations);
|
|
260
258
|
}
|
|
261
259
|
removeAnimationFromRender(callBackName) {
|
|
262
260
|
this.animations.delete(callBackName);
|