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,12 +1049,14 @@ Ox.VideoEditor = function(options, self) {
|
|||
'in': self.options['in'],
|
||||
out: self.options.out
|
||||
});
|
||||
self.editing && that.triggerEvent('editannotation', {
|
||||
id: self.options.selected,
|
||||
'in': self.options['in'],
|
||||
out: self.options.out,
|
||||
value: $('.OxEditableElement input:visible').val()
|
||||
});
|
||||
if (self.editing && self.options.selected[0] != '_') {
|
||||
that.triggerEvent('editannotation', {
|
||||
id: self.options.selected,
|
||||
'in': self.options['in'],
|
||||
out: self.options.out,
|
||||
value: $('.OxEditableElement input:visible').val()
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue