0709438e12
security fixes, and the wholly new interface; - don't force optimizations; - use external nss; ok kili@
23 lines
941 B
Plaintext
23 lines
941 B
Plaintext
$OpenBSD: patch-minimo_chrome_content_minimo_js,v 1.4 2007/04/01 09:36:15 martynas Exp $
|
|
--- minimo/chrome/content/minimo.js.orig Fri Feb 16 02:27:09 2007
|
|
+++ minimo/chrome/content/minimo.js Wed Mar 28 12:08:10 2007
|
|
@@ -1629,7 +1629,8 @@ function FullScreenToggle()
|
|
|
|
function DoFullScreen(fullscreen)
|
|
{
|
|
- document.getElementById("nav-bar").hidden = fullscreen;
|
|
+ // Do not hide the nav-bar in full screen mode.
|
|
+ // document.getElementById("nav-bar").hidden = fullscreen;
|
|
|
|
// Show a Quit in the context menu
|
|
document.getElementById("context_menu_quit").hidden = !fullscreen;
|
|
@@ -2275,7 +2276,7 @@ function BrowserFileOpen() {
|
|
fp.init(window, null, nsIFilePicker.modeOpenMultiple);
|
|
|
|
var fileCustomDirFile= refLocalFile.QueryInterface(nsILocalFile);
|
|
- fileCustomDirFile.initWithPath("\\");
|
|
+ fileCustomDirFile.initWithPath("/");
|
|
fp.displayDirectory = fileCustomDirFile;
|
|
|
|
fp.appendFilters(nsIFilePicker.filterAll);
|