mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-29 21:34:46 -05:00
11 lines
351 B
JavaScript
11 lines
351 B
JavaScript
document.querySelector('#import_assets').addEventListener('click', function() {
|
|
emit("import_assets", {
|
|
"path": document.querySelector('#path').value,
|
|
}).then(function(data) {
|
|
if (data.data.status == "ok") {
|
|
alert("Imported successfully!")
|
|
}
|
|
}).catch(function(err) {
|
|
console.log(err)
|
|
});
|
|
}); |