From 18fff67ee2ff5d04a4f83b475d40fa6369588646 Mon Sep 17 00:00:00 2001 From: jduehring Date: Wed, 11 Dec 2024 17:53:39 +0100 Subject: [PATCH 1/2] add all annotations as point-in-time annotation --- frontend/js/models/annotation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/js/models/annotation.js b/frontend/js/models/annotation.js index f8bc2afc0..9574894fc 100644 --- a/frontend/js/models/annotation.js +++ b/frontend/js/models/annotation.js @@ -47,7 +47,7 @@ define( start: 0, // Value > 0 for time based annotation by default (contrary to point annotation) - duration: 0.5, + duration: 0, comments: new Comments([], { annotation: this }), content: new AnnotationContent([]) From 3335335f72af4771d92307a70c47ec31c6b36319 Mon Sep 17 00:00:00 2001 From: jduehring Date: Tue, 17 Dec 2024 11:33:20 +0100 Subject: [PATCH 2/2] edit comment --- frontend/js/models/annotation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/js/models/annotation.js b/frontend/js/models/annotation.js index 9574894fc..046afa951 100644 --- a/frontend/js/models/annotation.js +++ b/frontend/js/models/annotation.js @@ -46,7 +46,7 @@ define( return { start: 0, - // Value > 0 for time based annotation by default (contrary to point annotation) + // Value = 0 for point annotation as default duration: 0, comments: new Comments([], { annotation: this }),