add manual mode for windowman

This commit is contained in:
buzz-lightsnack-2007 2024-05-17 16:19:22 +08:00
parent a089496034
commit b3b6522f52

View file

@ -74,8 +74,9 @@ export default class windowman {
// Add the headers. // Add the headers.
this[`headers`] = headers(((this[`options`] && (typeof this[`options`]).includes(`obj`)) ? this[`options`][`headers`] : false) ? this[`options`][`headers`] : null); this[`headers`] = headers(((this[`options`] && (typeof this[`options`]).includes(`obj`)) ? this[`options`][`headers`] : false) ? this[`options`][`headers`] : null);
headers(((OPTIONS != null && typeof OPTIONS == `object`) ? OPTIONS[`headers`] : false) ? OPTIONS[`headers`] : null); if (((this[`options`] && (typeof this[`options`]).includes(`obj`)) ? Object.hasOwn(this[`options`], `automatic`) : false) ? this[`options`][`automatic`] : true) {
this.design(); this.design();
};
} }
/* /*