https://bugzilla.wikimedia.org/show_bug.cgi?id=63159

--- Comment #9 from kipod <fur.hew...@gmail.com> ---
(In reply to Vibha Bamba from comment #8)
> Prateek, any pending concerns here?

i have a small concern: the event that triggers the popup can be either
"mouseenter" or "focus".

now, "focus" events do not contain viable "pageX" and "pageY" fields, so it may
be better to do something like:

offsetTop = (event.type == 'mouseenter'
    ? event.pageY + 20 
    : $el.offset().top + $el.height() + 9);

and similarly for offsetLeft.

no? 

peace.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to