mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-25 20:02:17 +00:00
feature update copy right info
This commit is contained in:
@@ -44,12 +44,10 @@ function GotoNextPage()
|
||||
var errorTip = document.getElementById('errorTip');
|
||||
|
||||
if (!checkbox.checked) {
|
||||
// 未勾选复选框,显示错误提示
|
||||
errorTip.style.display = 'block';
|
||||
return;
|
||||
}
|
||||
|
||||
// 已勾选,隐藏错误提示并继续
|
||||
errorTip.style.display = 'none';
|
||||
SendPrivacyChoice("agree");
|
||||
window.location.href="../21/index.html";
|
||||
@@ -60,11 +58,9 @@ function OnCheckboxChange()
|
||||
var checkbox = document.getElementById('agreeCheckbox');
|
||||
var errorTip = document.getElementById('errorTip');
|
||||
|
||||
// 勾选时隐藏错误提示
|
||||
if (checkbox.checked) {
|
||||
errorTip.style.display = 'none';
|
||||
}
|
||||
// 取消勾选时不显示错误提示(只有点击按钮时才检查)
|
||||
}
|
||||
|
||||
|
||||
@@ -115,11 +111,10 @@ function OpenCrossBorderNotice()
|
||||
{
|
||||
var noticeUrl = "";
|
||||
|
||||
// 个人信息出境告知书链接
|
||||
if(m_Region === "Chinese Mainland") {
|
||||
noticeUrl = "https://www.snapmaker.cn/cross-border-notice";
|
||||
noticeUrl = "https://snapmaker.cn/personal-info-export";
|
||||
} else {
|
||||
noticeUrl = "https://www.snapmaker.com/cross-border-notice";
|
||||
noticeUrl = "https://www.snapmaker.com/personal-info-export";
|
||||
}
|
||||
|
||||
var tSend={};
|
||||
|
||||
Reference in New Issue
Block a user