cosmetic changes
This commit is contained in:
parent
87a7a9b5be
commit
174aa87e9f
1 changed files with 1 additions and 1 deletions
|
@ -1172,7 +1172,7 @@ Ox.VideoEditor = function(options, self) {
|
||||||
Ox.forEach(self.options.cuts, function(cut, i) {
|
Ox.forEach(self.options.cuts, function(cut, i) {
|
||||||
if (cut > self.options.position) {
|
if (cut > self.options.position) {
|
||||||
points = {
|
points = {
|
||||||
'in': i ? self.options.cuts[i - 1] : 0,
|
'in': i == 0 ? 0 : self.options.cuts[i - 1],
|
||||||
out: cut - 1 / self.options.fps
|
out: cut - 1 / self.options.fps
|
||||||
};
|
};
|
||||||
return false; // break
|
return false; // break
|
||||||
|
|
Loading…
Reference in a new issue