total5 0.0.6-5 → 0.0.6-7
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/flow-flowstream.js +1 -1
- package/flow-test.js +2 -1
- package/package.json +1 -1
package/flow-flowstream.js
CHANGED
|
@@ -2666,7 +2666,7 @@ function MAKEFLOWSTREAM(meta) {
|
|
|
2666
2666
|
if (!instance.$statusdelay)
|
|
2667
2667
|
instance.$statusdelay = setTimeout(sendstatusforce, delay || 1000, instance);
|
|
2668
2668
|
} else
|
|
2669
|
-
sendstatusforce();
|
|
2669
|
+
sendstatusforce(instance);
|
|
2670
2670
|
};
|
|
2671
2671
|
|
|
2672
2672
|
// component.dashboard() will execute this method
|
package/flow-test.js
CHANGED
|
@@ -76,7 +76,8 @@ exports.load = function(name, source, config, init) {
|
|
|
76
76
|
};
|
|
77
77
|
|
|
78
78
|
Test.trigger = function(data) {
|
|
79
|
-
|
|
79
|
+
var instances = Test.flow.flow.meta.flow;
|
|
80
|
+
instances.component.trigger && instances.component.trigger(data);
|
|
80
81
|
};
|
|
81
82
|
|
|
82
83
|
Test.reconfigure = function(value) {
|