From d5c5327ad121cd29bfd51084e376592b1cff0c62 Mon Sep 17 00:00:00 2001 From: Glandos Date: Tue, 27 Jul 2021 23:23:18 +0200 Subject: [PATCH] Support setCustomTimeMarker It was introduced in https://github.com/visjs/vis-timeline/pull/86 --- packages/timeline/lib/Timeline.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/timeline/lib/Timeline.vue b/packages/timeline/lib/Timeline.vue index bebee1b..f08f608 100644 --- a/packages/timeline/lib/Timeline.vue +++ b/packages/timeline/lib/Timeline.vue @@ -123,6 +123,9 @@ export default { setCustomTime(time, id) { this.timeline.setCustomTime(time, id); }, + setCustomTimeMarker(title, id, editable) { + this.timeline.setCustomTimeMarker(title, id, editable); + }, setCustomTimeTitle(title, id) { this.timeline.setCustomTimeTitle(title, id); },