Lines Matching refs:contextMenu
37 private contextMenu: HTMLDivElement | null | undefined; property in LitTree
133 this.contextMenu!.style.display = 'none';
202 this.contextMenu!.style.display = 'block';
203 this.contextMenu!.style.left = ev.pageX + 'px';
204 this.contextMenu!.style.top = ev.pageY + 'px';
209 this.contextMenu!.style.display = 'block';
210 this.contextMenu!.style.left = ev.pageX + 'px';
211 this.contextMenu!.style.top = ev.pageY + 'px';
310 this.contextMenu!.style.display = 'none';
531 this.contextMenu!.style.display = 'block';
532 this.contextMenu!.style.left = ev.pageX + 'px';
533 this.contextMenu!.style.top = ev.pageY + 'px';
601 this.contextMenu = this.shadowRoot!.querySelector<HTMLDivElement>('#contextMenu');