Compare commits

..

No commits in common. "bd0f77b1b656bed9135e21824ded49a44567ac6c" and "c5c277f5161d41bf0bac1d4b1c814ff62f0adff1" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View File

@ -49,14 +49,14 @@ export default class Finder extends WDEApplication{
path: path
})
const response = await fetch(`/app/${this.AppId}/renderProps?` + params)
const response = await fetch(`/app/${Finder.AppId}/renderProps?` + params)
if (response.status != 200){
// WebDesktopEnvironment.Alert("Error in properties render") //TODO
return false
}
const html = await response.text()
let newWindow = super.WDE().Decorat.CreateNewWindow(this.AppId, 350, 500 )
let newWindow = super.WDE().Decorat.CreateNewWindow(Finder.AppId, 350, 500 )
newWindow.innerHTML = html
newWindow.querySelector("#closeWindowButton").addEventListener('click', function (params) {
// WebDesktopEnvironment.CloseWindow(newWindow)

View File

@ -67,7 +67,7 @@ export default class AbstractWebDesktopEnvironment{
async #loadApp(appManifest, onload){
let newApp
// console.log(appManifest)
await import(appManifest.js[0]).then((app) => {newApp = app}) //FIXME
await import(appManifest.js[0]).then((app) => {newApp = app})
let newAppClass = new newApp.default(this.#wde, appManifest)
this._applications[appManifest.appId] = newAppClass