We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ead6077 commit 2fe349bCopy full SHA for 2fe349b
helper.js
@@ -164,7 +164,7 @@ function spawnContextMenu(content) { // TODO: Make async
164
}
165
166
newelement.parentElement.addEventListener("click", function () {
167
- newelement.outerHTML = "";
+ newelement.remove();
168
})
169
170
system/iofsv2.js
@@ -339,7 +339,7 @@ export const iofs = {
339
return path;
340
},
341
342
- sanitizePath: function(path) {
+ sanitizePath: function(path = "") {
343
path = path.replaceAll("//", "/");
344
if(path.indexOf("//") >= 0) {
345
path = this.sanitizePath(path);
0 commit comments