testilo 44.0.0 → 44.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/script.js +7 -1
package/package.json
CHANGED
package/script.js
CHANGED
|
@@ -219,7 +219,13 @@ exports.script = (id, what, deviceID, options = {}) => {
|
|
|
219
219
|
}
|
|
220
220
|
else if (toolID === 'ibm') {
|
|
221
221
|
toolAct.withItems = true;
|
|
222
|
-
toolAct.withNewContent =
|
|
222
|
+
toolAct.withNewContent = false;
|
|
223
|
+
}
|
|
224
|
+
else if (toolID === 'nuVal') {
|
|
225
|
+
toolAct.withSource = false;
|
|
226
|
+
}
|
|
227
|
+
else if (toolID === 'nuVnu') {
|
|
228
|
+
toolAct.withSource = false;
|
|
223
229
|
}
|
|
224
230
|
else if (toolID === 'qualWeb') {
|
|
225
231
|
toolAct.withNewContent = false;
|