Skip to content

Commit

Permalink
Change back to BbStarTrail
Browse files Browse the repository at this point in the history
  • Loading branch information
Niekes committed Dec 1, 2023
1 parent a374191 commit 1de57b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "beautiful-backgrounds",
"version": "0.0.3",
"version": "0.0.4",
"keywords": [
"canvas",
"animation",
Expand Down
4 changes: 2 additions & 2 deletions src/components/StarTrail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Particle from './Particle';
import { getRandomFloat, interpolateLinear } from '../utils/number';
import { randomColor } from '../utils/color';

export class bbStarTrail extends BB {
export class BbStarTrail extends BB {
private starSizeMin: number;
private starSizeMax: number;

Expand Down Expand Up @@ -133,5 +133,5 @@ export class bbStarTrail extends BB {
}

if (!window.customElements.get('bb-star-trail')) {
window.customElements.define('bb-star-trail', bbStarTrail);
window.customElements.define('bb-star-trail', BbStarTrail);
}
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { bbStarTrail } from './components/StarTrail';
export { BbStarTrail } from './components/StarTrail';

0 comments on commit 1de57b7

Please sign in to comment.