File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
/*
Author : hyojeong yang
Date : 2024.11.11
Project : 다채움
*/
/* common */
import { initCommon } from './common/common-common.js';
initCommon();
/* custrom */
import { initCusCommon } from './custom/custom-common.js';
initCusCommon();
function openFullWindow(url) {
const screenWidth = window.screen.availWidth;
const screenHeight = window.screen.availHeight;
window.open(
url,
"_blank",
`width=${screenWidth},height=${screenHeight},top=0,left=0`
);
}
window.openFullWindow = openFullWindow;