티스토리 수익 글 보기
function open_img(url) {
try {
var left = Math.floor((screen.availWidth – 250) / 2);
var top = Math.floor((screen.availHeight – 100) / 2);
try {
tatterImagePopup.close();
} catch (e) {
}
tatterImagePopup = window.open(“”, “”, “width=250, height=100, left=” + left + “, top=” + top + “, scrollbars=no, resizable=yes”);
tatterImagePopup.document.open(“text/html”, “replace”);
tatterImagePopup.document.write(`
:: View ::
${navigator.userAgent.indexOf(“Safari”) > -1
? ``
: ``
}
`);
tatterImagePopup.document.close();
if (tatterImagePopup.document.focus)
tatterImagePopup.document.focus();
} catch (e) {
window.open(url, “_blank”);
}
}