Prevent new scripts from interrupting scripts in progress
This commit is contained in:
parent
55b3ac0750
commit
d23ae82679
13 changed files with 1864 additions and 1423 deletions
|
|
@ -607,16 +607,15 @@ function findMachineComponent(idMachine, sType)
|
|||
}
|
||||
|
||||
/**
|
||||
* processMachineScript(idMachine, sComponent, sScript)
|
||||
* processMachineScript(idMachine, sScript)
|
||||
*
|
||||
* @param {string} idMachine
|
||||
* @param {string} sComponent
|
||||
* @param {string} sScript
|
||||
* @return {boolean}
|
||||
*/
|
||||
function processMachineScript(idMachine, sComponent, sScript)
|
||||
function processMachineScript(idMachine, sScript)
|
||||
{
|
||||
return Component.processScript(idMachine, sComponent, sScript);
|
||||
return Component.processScript(idMachine, sScript);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue