diff --git a/apps/fsapp.app/index.mjs b/apps/fsapp.app/index.mjs index f3d350ef..c7ea469d 100644 --- a/apps/fsapp.app/index.mjs +++ b/apps/fsapp.app/index.mjs @@ -5,8 +5,8 @@ self.mime = await anura.import("npm:mime"); self.currentlySelected = []; self.clipboard = []; self.removeAfterPaste = false; -self.fs = anura.fs; self.filePicker = false; +self.fs = anura.fs; self.Buffer = Filer.Buffer; self.sh = new anura.fs.Shell(); diff --git a/documentation/appdevt.md b/documentation/appdevt.md index 49c78f30..69e9917c 100644 --- a/documentation/appdevt.md +++ b/documentation/appdevt.md @@ -169,7 +169,7 @@ if (instance.manifest.marketplace) { dreamland.js is a reactive JSX-inspired rendering library with no virtual dom and no build step. You can find the source code [here](https://github.com/MercuryWorkshop/dreamlandjs) and the documentation [here](https://dreamland.js.org/). -AnuraOS itself uses dreamland for the desktop environment and core system apps, and you can use it in your apps as well. To include dreamland in your app, you can add the following to the `head` section of your `index.html` file: +AnuraOS itself uses dreamland for the desktop environment and core system apps, and you can use it in your apps as well. To include dreamland in your app without a bundler, you can add the following to the `head` section of your `index.html` file: ```html diff --git a/src/AliceWM.css b/src/AliceWM.css index 174a34e0..ec1e16da 100644 --- a/src/AliceWM.css +++ b/src/AliceWM.css @@ -76,7 +76,7 @@ width: 8px; position: fixed; transition: background 0.2s; - z-index: 9999; + z-index: 0; cursor: ew-resize; display: flex; align-items: center;