ps-toolkit-ui 1.11.66 → 1.11.68

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.
@@ -8084,12 +8084,13 @@
8084
8084
  this.activeAll = false;
8085
8085
  this.isDone = false;
8086
8086
  this.onDone = function () { };
8087
+ this.onLoadStep = function () { };
8087
8088
  this.l = l;
8088
8089
  }
8089
8090
  StepsClass.prototype.loadStep = function (s) {
8090
8091
  this.items.find(function (x) { return x.active; }).active = false;
8091
8092
  s.active = true;
8092
- s.form.loadData(s.form.url.replace('-update', '-get'));
8093
+ this.onLoadStep(s);
8093
8094
  };
8094
8095
  return StepsClass;
8095
8096
  }());