mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-06 19:02:42 +02:00
Add files via upload
This commit is contained in:
parent
f25902b2e8
commit
5301a2ea9d
2 changed files with 31 additions and 8 deletions
|
@ -67,12 +67,19 @@
|
|||
|
||||
if(eventzget.action === "installScript"){
|
||||
ScriptDiscoveryService.loadOneScript(eventzget.script);
|
||||
sendRunningScriptList();
|
||||
|
||||
Script.setTimeout(function() {
|
||||
sendRunningScriptList();
|
||||
}, 2000);
|
||||
}
|
||||
|
||||
if(eventzget.action === "uninstallScript"){
|
||||
ScriptDiscoveryService.stopScript(eventzget.script, false);
|
||||
sendRunningScriptList();
|
||||
|
||||
Script.setTimeout(function() {
|
||||
sendRunningScriptList();
|
||||
}, 2000);
|
||||
|
||||
}
|
||||
|
||||
if(eventzget.action === "requestRunningScriptData"){
|
||||
|
|
|
@ -79,6 +79,11 @@
|
|||
});
|
||||
|
||||
function install(script, btnId){
|
||||
//then change btn appearence
|
||||
var btn = "<button class='processing' >Processing...</button>";
|
||||
document.getElementById(btnId).innerHTML = btn;
|
||||
|
||||
|
||||
//Action
|
||||
var readyEvent = {
|
||||
"action": "installScript",
|
||||
|
@ -87,13 +92,15 @@
|
|||
|
||||
EventBridge.emitWebEvent(JSON.stringify(readyEvent));
|
||||
|
||||
//then change btn appearence
|
||||
//var btn = "<button class='uninstall' onclick='uninstall(" + script + ", " + btnId + ");'>Uninstall</button>";
|
||||
//document.getElementById(btnId).innerHTML = btn;
|
||||
|
||||
|
||||
}
|
||||
|
||||
function uninstall(script, btnId){
|
||||
//then change btn appearence
|
||||
var btn = "<button class='processing' >Processing...</button>";
|
||||
document.getElementById(btnId).innerHTML = btn;
|
||||
|
||||
//Action
|
||||
var readyEvent = {
|
||||
"action": "uninstallScript",
|
||||
|
@ -101,9 +108,7 @@
|
|||
};
|
||||
|
||||
EventBridge.emitWebEvent(JSON.stringify(readyEvent));
|
||||
//then change btn appearence
|
||||
//var btn = "<button class='install' onclick='install(" + script + ", " + btnId + ");'>Install</button>";
|
||||
//document.getElementById(btnId).innerHTML = btn;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
@ -230,6 +235,17 @@
|
|||
border: 2px solid #e34c22;
|
||||
}
|
||||
|
||||
button.processing {
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
background-color: #b59207;
|
||||
font-size: 16px;
|
||||
color: #ffffff;
|
||||
font-weight: 600;
|
||||
border-radius: 6px;
|
||||
border: 2px solid #b34700;
|
||||
transition-duration: 0.3s;
|
||||
}
|
||||
|
||||
div.searchbox {
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
|
|
Loading…
Reference in a new issue