Skip to content
Snippets Groups Projects
Commit 5949970b authored by fsdavid's avatar fsdavid
Browse files

Correct #107 bug and show hiddent text in tooltip in context menu

parent 47496f2c
No related branches found
No related tags found
No related merge requests found
......@@ -130,7 +130,6 @@ div[contextualBlock]
[fixedMouseContextualContainerDirective] div[body]
{
background-color: blue;
overflow: hidden;
}
......
......@@ -27,7 +27,10 @@
<div
*ngIf="onhoverSegmentForFixed$ | async; let onhoverSegmentFixed"
(click)="searchRegion([onhoverSegmentFixed])"
class="ws-no-wrap text-left pe-all btn btn-sm btn-secondary btn-block">
class="ws-no-wrap text-left pe-all btn btn-sm btn-secondary btn-block"
data-toggle="tooltip"
data-placement="top"
[title]="onhoverSegmentFixed.name">
Search KG for {{ onhoverSegmentFixed.name }}
</div>
......
import { Directive, Input, HostBinding, HostListener, ElementRef, OnChanges, Output, EventEmitter } from "@angular/core";
import { ConsoleReporter } from "jasmine";
@Directive({
selector: '[fixedMouseContextualContainerDirective]'
......@@ -50,11 +51,16 @@ export class FixedMouseContextualContainerDirective implements OnChanges{
@HostListener('document:click', ['$event'])
documentClick(event: MouseEvent){
if (this.styleDisplay === 'none')
return
if (this.el.nativeElement.contains(event.target))
return
if (event.which !== 3) {
console.log(event.target);
console.log(event.which);
if (this.styleDisplay === 'none')
return
if (this.el.nativeElement.contains(event.target))
return
this.hide()
this.hide()
}
}
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment