Fixed merge conflict

This commit is contained in:
n1474335 2017-02-24 18:14:37 +00:00
commit 11e06eeb75
9 changed files with 363 additions and 111 deletions

View file

@ -3133,5 +3133,19 @@ var OperationConfig = {
outputType: "html",
args: [
]
}
},
"Wait": {
description: "Waits for a number of milliseconds.",
run: FlowControl.runWait,
inputType: "string",
outputType: "string",
flowControl: true,
args: [
{
name: "Sleep time in milliseconds",
type: "number",
value: FlowControl.SLEEP_TIME,
}
]
},
};