From 222f74d1b5ce3b4b6960cfa05ec23e045463adbe Mon Sep 17 00:00:00 2001 From: rlx Date: Tue, 6 Nov 2018 15:31:11 +0100 Subject: [PATCH] missing semicolons --- source/UI/js/Video/VideoAnnotationPanel.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/UI/js/Video/VideoAnnotationPanel.js b/source/UI/js/Video/VideoAnnotationPanel.js index 90e9cc57..cc788b0b 100644 --- a/source/UI/js/Video/VideoAnnotationPanel.js +++ b/source/UI/js/Video/VideoAnnotationPanel.js @@ -1720,10 +1720,10 @@ Ox.VideoAnnotationPanel = function(options, self) { // id might have changed if new annotation was created if (annotation.id) { self.options.selected = annotation.id; - var layer = Ox.getObjectById(self.options.layers, annotation.layer) - var item = Ox.getObjectById(layer.items, annotation.id) + var layer = Ox.getObjectById(self.options.layers, annotation.layer); + var item = Ox.getObjectById(layer.items, annotation.id); if (!item) { - layer.items.push(annotation) + layer.items.push(annotation); self.annotations = getAnnotations(); } }