Stylistic fixes

This commit is contained in:
MeowcaTheoRange 2023-11-23 12:05:19 -06:00
parent db98272eeb
commit fa0add70df
2 changed files with 6 additions and 4 deletions

View file

@ -4,7 +4,7 @@ const fs = require("fs");
const path = require("path"); const path = require("path");
exports.default = () => { exports.default = () => {
return src("views/**/*.js") return src("views/**/*.html")
.pipe( .pipe(
through2.obj(function (file, _, cb) { through2.obj(function (file, _, cb) {
if (file.isBuffer()) { if (file.isBuffer()) {

View file

@ -11,9 +11,9 @@ class WindowObject {
#orig_selfPosY; #orig_selfPosY;
#isDragging; #isDragging;
constructor(parent, content, srcdoc) { constructor(parent, content, srcdoc, w, h) {
this.parentElement = parent; this.parentElement = parent;
this.windowObject = WindowObject.createWindow(this, content, srcdoc); this.windowObject = WindowObject.createWindow(this, content, srcdoc, w, h);
this.parentElement.appendChild(this.windowObject); this.parentElement.appendChild(this.windowObject);
WindowObject.raiseWindow(this.windowObject); WindowObject.raiseWindow(this.windowObject);
@ -154,9 +154,11 @@ class WindowObject {
windowObj.focus(); windowObj.focus();
} }
static createWindow(windowRef, content, srcdoc) { static createWindow(windowRef, content, srcdoc, w, h) {
const windowObject = document.createElement("div"); const windowObject = document.createElement("div");
windowObject.classList.add("window-object"); windowObject.classList.add("window-object");
windowObject.style.width = `calc(${w}px + 0.5em)`;
windowObject.style.height = `calc(${h}px + 1.5em)`;
{ {
const windowManager = document.createElement("div"); const windowManager = document.createElement("div");