@checksub_team/peaks_timeline 2.0.0-alpha.7 → 2.0.0-alpha.8

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checksub_team/peaks_timeline",
3
- "version": "2.0.0-alpha.7",
3
+ "version": "2.0.0-alpha.8",
4
4
  "description": "JavaScript UI component for displaying audio waveforms",
5
5
  "main": "./peaks.js",
6
6
  "types": "./peaks.js.d.ts",
package/peaks.js CHANGED
@@ -15756,6 +15756,7 @@ module.exports = function (Konva, SVGs, Utils) {
15756
15756
  this._width,
15757
15757
  this._height
15758
15758
  ]);
15759
+ this.refreshIndicators();
15759
15760
  };
15760
15761
  LineIndicator.prototype._createIndicator = function (lineGroup, type, text) {
15761
15762
  const indicator = new Konva.Group();
@@ -77,6 +77,8 @@ define([
77
77
  this._stage.height(this._height);
78
78
 
79
79
  this._separatingLine.points([this._width, 0, this._width, this._height]);
80
+
81
+ this.refreshIndicators();
80
82
  };
81
83
 
82
84
  LineIndicator.prototype._createIndicator = function(lineGroup, type, text) {