Back to Article Face Changing Sichuan Opera
Back to Article Chinese KungFu Class at Bamboo Park: 5-step Boxing, the key to become Guru
Back to Article Nanshan Buddhism Culture Park Sanya, China, Asia
(() => {
let popupWindow = null;
let previousURL;
let windowSize = "width=150,height=100,left=0,top=0";
let windowName = "singleWindow";
const OpenPopupSingleTab = (url) => {
if (popupWindow === null || popupWindow.closed) {
popupWindow = window.open(url, windowName, windowSize);
} else if (previousURL !== url) {
popupWindow = window.open(url, windowName, windowSize);
popupWindow.focus();
} else {
// If the URL is already open, focus the window without reloading
popupWindow.focus();
}
previousURL = url;
};
const links = document.querySelectorAll("a[target='popupWindow']");
for (const link of links) {
link.addEventListener("click", function(event) {
OpenPopupSingleTab(this.href);
event.preventDefault();
}, false);
}
})();
0 Comments