Skip to content

Commit

Permalink
removed unused element reference.
Browse files Browse the repository at this point in the history
  • Loading branch information
joselrio committed Sep 23, 2024
1 parent 836b098 commit b05c92a
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ namespace OSFramework.OSUI.Patterns.Dropdown.ServerSide {
private _balloonSearchInputElement: HTMLElement;
// Store the HTML element for the DropdownBalloonSearch
private _balloonSearchInputWrapperElement: HTMLElement;
// Store the HTML element for the DropdownBalloonSearchIcon
private _balloonSearchInputIconWrapperElement: HTMLElement;
// Store a Flag property that will help dealing with the focus state at the close moment
private _closeDynamically = false;
// Custom Balloon Event
Expand Down Expand Up @@ -659,10 +657,6 @@ namespace OSFramework.OSUI.Patterns.Dropdown.ServerSide {
this.selfElement,
Enum.CssClass.BalloonSearch
);
this._balloonSearchInputIconWrapperElement = Helper.Dom.ClassSelector(
this.selfElement,
Enum.CssClass.BalloonSearchIcon
);
this._balloonSearchInputElement = Helper.Dom.TagSelector(
this._balloonSearchInputWrapperElement,
GlobalEnum.HTMLElement.Input
Expand Down Expand Up @@ -708,7 +702,6 @@ namespace OSFramework.OSUI.Patterns.Dropdown.ServerSide {
this._balloonOptionsWrapperElement = undefined;
this._balloonSearchInputElement = undefined;
this._balloonSearchInputWrapperElement = undefined;
this._balloonSearchInputIconWrapperElement = undefined;
this._balloonElem = undefined;
this._selectValuesWrapper = undefined;
}
Expand Down

0 comments on commit b05c92a

Please sign in to comment.