@checksub_team/peaks_timeline 1.9.1 → 1.9.2
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/peaks.js +1 -1
- package/src/timeline-zoomview.js +1 -1
package/package.json
CHANGED
package/peaks.js
CHANGED
|
@@ -20159,7 +20159,7 @@ module.exports = function (MouseDragHandler, PlayheadLayer, SourcesLayer, ModeLa
|
|
|
20159
20159
|
this.clearScrollingInterval();
|
|
20160
20160
|
};
|
|
20161
20161
|
TimelineZoomView.prototype.getSelectedElements = function () {
|
|
20162
|
-
return this._modeLayer.getSelectedElements();
|
|
20162
|
+
return Object.values(this._modeLayer.getSelectedElements());
|
|
20163
20163
|
};
|
|
20164
20164
|
TimelineZoomView.prototype.updateWithAutoScroll = function (updateInInterval, updateOutInterval) {
|
|
20165
20165
|
var self = this;
|
package/src/timeline-zoomview.js
CHANGED
|
@@ -303,7 +303,7 @@ define([
|
|
|
303
303
|
};
|
|
304
304
|
|
|
305
305
|
TimelineZoomView.prototype.getSelectedElements = function() {
|
|
306
|
-
return this._modeLayer.getSelectedElements();
|
|
306
|
+
return Object.values(this._modeLayer.getSelectedElements());
|
|
307
307
|
};
|
|
308
308
|
|
|
309
309
|
TimelineZoomView.prototype.updateWithAutoScroll = function(updateInInterval,
|