Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
lindelof committed Apr 5, 2020
1 parent f59d145 commit 9406881
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "particles-bg-vue",
"version": "1.3.1",
"version": "1.3.2",
"description": "Vue.js component for particles backgrounds",
"author": "creotip@gmail.com",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/particles-bg/particles/BallParticles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export default {
this.proton && this.proton.update();
}
},
beforeDestory() {
beforeDestroy() {
try {
this.proton.destroy();
RAFManager.remove(this.renderProton);
Expand Down
2 changes: 1 addition & 1 deletion src/particles-bg/particles/CanvasComp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default {
this.resize = this.resize.bind(this);
window.addEventListener("resize", this.resize);
},
beforeDestory() {
beforeDestroy() {
window.removeEventListener("resize", this.resize);
}
};
Expand Down
2 changes: 1 addition & 1 deletion src/particles-bg/particles/CircleParticles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default {
this.proton && this.proton.update();
}
},
beforeDestory() {
beforeDestroy() {
try {
this.proton.destroy();
RAFManager.remove(this.renderProton);
Expand Down
2 changes: 1 addition & 1 deletion src/particles-bg/particles/CobwebParticles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default {
this.proton && this.proton.update();
}
},
beforeDestory() {
beforeDestroy() {
try {
this.proton.destroy();
RAFManager.remove(this.renderProton);
Expand Down
2 changes: 1 addition & 1 deletion src/particles-bg/particles/ColorParticles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default {
this.proton && this.proton.update();
}
},
beforeDestory() {
beforeDestroy() {
try {
this.proton.destroy();
RAFManager.remove(this.renderProton);
Expand Down
2 changes: 1 addition & 1 deletion src/particles-bg/particles/CustomParticles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export default {
this.proton && this.proton.update();
}
},
beforeDestory() {
beforeDestroy() {
try {
this.proton.destroy();
RAFManager.remove(this.renderProton);
Expand Down
2 changes: 1 addition & 1 deletion src/particles-bg/particles/FountainParticles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default {
this.proton && this.proton.update();
}
},
beforeDestory() {
beforeDestroy() {
try {
this.proton.destroy();
RAFManager.remove(this.renderProton);
Expand Down
2 changes: 1 addition & 1 deletion src/particles-bg/particles/LinesParticles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default {
this.proton && this.proton.update();
}
},
beforeDestory() {
beforeDestroy() {
try {
this.proton.destroy();
RAFManager.remove(this.renderProton);
Expand Down
2 changes: 1 addition & 1 deletion src/particles-bg/particles/PolygonParticles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ export default {
this.proton && this.proton.update();
}
},
beforeDestory() {
beforeDestroy() {
try {
this.proton.destroy();
RAFManager.remove(this.renderProton);
Expand Down
2 changes: 1 addition & 1 deletion src/particles-bg/particles/SquareParticles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export default {
this.proton && this.proton.update();
}
},
beforeDestory() {
beforeDestroy() {
try {
this.proton.destroy();
RAFManager.remove(this.renderProton);
Expand Down
2 changes: 1 addition & 1 deletion src/particles-bg/particles/TadpoleParticles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export default {
this.proton && this.proton.update();
}
},
beforeDestory() {
beforeDestroy() {
try {
this.proton.destroy();
RAFManager.remove(this.renderProton);
Expand Down
2 changes: 1 addition & 1 deletion src/particles-bg/particles/ThickParticles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export default {
this.colorTemplate = `hsla(hue,80%,50%, 0.75)`;
this.renderProton = this.renderProton.bind(this);
},
beforeDestory() {
beforeDestroy() {
try {
this.proton.destroy();
RAFManager.remove(this.renderProton);
Expand Down

0 comments on commit 9406881

Please sign in to comment.