aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--loggedin.js9
-rw-r--r--share_frontend.php2
2 files changed, 10 insertions, 1 deletions
diff --git a/loggedin.js b/loggedin.js
index d328351..3ea1469 100644
--- a/loggedin.js
+++ b/loggedin.js
@@ -745,6 +745,8 @@ function make_share_window(folder, filename) {
password_label.innerText = "Password";
var password_input = mk(password_container, 'input');
password_input.type = 'password';
+ password_input.autocomplete = 'off'
+
password_input.style.flex = "1 0 0";
password_input.onchange = (_e) => {
data.password = password_input.value;
@@ -912,6 +914,13 @@ function add_file_visuals(fileview) {
focus.pwd.push(fileview.filename);
openfile(fileview.is_directory);
}],
+ ['Open in New Window', () => {
+ var new_pwd = focus.pwd.slice();
+ new_pwd.push(fileview.filename);
+ var new_wnd = make_window(new_pwd);
+ focus_window(new_wnd);
+ openfile(fileview.is_directory);
+ }],
// ['Open in New Window', () => {alert('not implemented')}],
];
diff --git a/share_frontend.php b/share_frontend.php
index 0a13cd7..e196151 100644
--- a/share_frontend.php
+++ b/share_frontend.php
@@ -11,7 +11,7 @@
</head>
</head>
<body>
- <form method="GET" action="<?php echo "/php/share.php"; ?>">
+ <form method="GET" action="<?php echo "/php/share.php"; ?>" autocomplete="off">
<h2>Fileup</h2>
<div class="content">
This file is password protected.