Atualização automática: 2026-05-18 17:10:08

This commit is contained in:
Hermes
2026-05-18 17:10:08 +00:00
parent 8ac0979c67
commit 700c47277d
4 changed files with 155 additions and 34 deletions
+6 -1
View File
@@ -30,7 +30,12 @@ document.getElementById('btnOpenFolder').addEventListener('click', () => {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ path: clonedData.data.path })
});
}).then(res => res.json())
.then(data => {
if (data.success && data.url) {
window.open(data.url, '_blank');
}
});
}
});