diff --git a/minimo/chrome/content/minimo.js b/minimo/chrome/content/minimo.js index 139ebf9f6a29..430c3eac9849 100755 --- a/minimo/chrome/content/minimo.js +++ b/minimo/chrome/content/minimo.js @@ -1081,16 +1081,23 @@ function URLBarEntered() return true; } +function PageProxyClickHandler(aEvent) { + document.getElementById("urlbarModeSelector").showPopup(document.getElementById("proxy-deck"),-1,-1,"popup","bottomleft", "topleft"); +} + function URLBarFocusHandler(aEvent, aElt) { + if (gIgnoreFocus) gIgnoreFocus = false; else if (gClickSelectsAll) aElt.select(); - gURLBar.setAttribute("open", "true"); - gURLBar.showHistoryPopup(); + // gURLBar.setAttribute("open", "true"); + // gURLBar.showHistoryPopup(); + + } function URLBarMouseDownHandler(aEvent, aElt)