mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
19 lines
518 B
JavaScript
19 lines
518 B
JavaScript
/**
|
|
* notion-enhancer: integrated titlebar
|
|
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://notion-enhancer.github.io/) under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = async function (api, db, __exports, __eval) {
|
|
__eval(`
|
|
const notionRectFromFocusedWindow = getRectFromFocusedWindow;
|
|
getRectFromFocusedWindow = (windowState) => {
|
|
const rect = notionRectFromFocusedWindow(windowState);
|
|
rect.frame = false;
|
|
return rect;
|
|
};
|
|
`);
|
|
};
|