don't trigger edit annotation event with temporary id (fixes #369)
This commit is contained in:
parent
353fce1f14
commit
8d7d1fdf36
1 changed files with 8 additions and 6 deletions
|
@ -1049,7 +1049,8 @@ Ox.VideoEditor = function(options, self) {
|
|||
'in': self.options['in'],
|
||||
out: self.options.out
|
||||
});
|
||||
self.editing && that.triggerEvent('editannotation', {
|
||||
if (self.editing && self.options.selected[0] != '_') {
|
||||
that.triggerEvent('editannotation', {
|
||||
id: self.options.selected,
|
||||
'in': self.options['in'],
|
||||
out: self.options.out,
|
||||
|
@ -1057,6 +1058,7 @@ Ox.VideoEditor = function(options, self) {
|
|||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function setPosition(position, playing) {
|
||||
self.options.position = position;
|
||||
|
|
Loading…
Reference in a new issue