private static void setup()
{
// Reimplementing Focus panel, GWT seems to break otherwise.
usersWhoLikedPanelWrapper = new FlowPanel()
{
private final TimerFactory timerFactory = new TimerFactory();
private boolean actuallyOut = false;
private static final int TIMER_EXPIRATION = 250;
@Override
public void onBrowserEvent(final Event event)
{
super.onBrowserEvent(event);
if (DOM.eventGetType(event) == Event.ONMOUSEOUT)
{
actuallyOut = true;
timerFactory.runTimer(TIMER_EXPIRATION, new TimerHandler()
{
public void run()
{
if (actuallyOut)
{