missing semicolons
This commit is contained in:
parent
2e853ba316
commit
222f74d1b5
1 changed files with 3 additions and 3 deletions
|
@ -1720,10 +1720,10 @@ Ox.VideoAnnotationPanel = function(options, self) {
|
||||||
// id might have changed if new annotation was created
|
// id might have changed if new annotation was created
|
||||||
if (annotation.id) {
|
if (annotation.id) {
|
||||||
self.options.selected = annotation.id;
|
self.options.selected = annotation.id;
|
||||||
var layer = Ox.getObjectById(self.options.layers, annotation.layer)
|
var layer = Ox.getObjectById(self.options.layers, annotation.layer);
|
||||||
var item = Ox.getObjectById(layer.items, annotation.id)
|
var item = Ox.getObjectById(layer.items, annotation.id);
|
||||||
if (!item) {
|
if (!item) {
|
||||||
layer.items.push(annotation)
|
layer.items.push(annotation);
|
||||||
self.annotations = getAnnotations();
|
self.annotations = getAnnotations();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue