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.
@@ -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
- Flow.test.component.trigger(data);
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "total5",
3
- "version": "0.0.6-5",
3
+ "version": "0.0.6-7",
4
4
  "description": "Total.js framework v5",
5
5
  "main": "index.js",
6
6
  "directories": {