diff --git a/source/Ox.UI/js/Video/VideoElement.js b/source/Ox.UI/js/Video/VideoElement.js index f0f51ad7..0f779812 100644 --- a/source/Ox.UI/js/Video/VideoElement.js +++ b/source/Ox.UI/js/Video/VideoElement.js @@ -201,7 +201,7 @@ Ox.VideoElement = function(options, self) { } if (item.duration) { if (!item.out) { - item.out = item.duration - item['in']; + item.out = item.duration; } currentTime += item.duration; item.id = getId(item); @@ -210,7 +210,7 @@ Ox.VideoElement = function(options, self) { Ox.getVideoInfo(item.src, function(info) { item.duration = info.duration; if (!item.out) { - item.out = item['in'] + item.duration; + item.out = item.duration; } currentTime += item.duration; item.id = getId(item);