missing semicolons

This commit is contained in:
rlx 2018-11-06 15:31:11 +01:00
parent 2e853ba316
commit 222f74d1b5

View file

@ -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();
}
}