Skip to content

Commit

Permalink
add static
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaskiewicz committed Jun 1, 2023
1 parent 21c360e commit 9ef11b8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/src/components/accordion/accordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export class Accordion implements ComponentInterface {
private contentEl: HTMLDivElement | undefined;
private contentElWrapper: HTMLDivElement | undefined;
private headerEl: HTMLDivElement | undefined;
private static MyVar = 123;

private currentRaf: number | undefined;

Expand Down Expand Up @@ -146,6 +147,7 @@ export class Accordion implements ComponentInterface {
};

private getSlottedHeaderIonItem = () => {
console.log(Accordion.MyVar);
const { headerEl } = this;
if (!headerEl) {
return;
Expand Down

0 comments on commit 9ef11b8

Please sign in to comment.