diff --git a/source/Ox.UI/js/Video/Ox.VideoElement.js b/source/Ox.UI/js/Video/Ox.VideoElement.js
index 42e2a5f1..33f19715 100644
--- a/source/Ox.UI/js/Video/Ox.VideoElement.js
+++ b/source/Ox.UI/js/Video/Ox.VideoElement.js
@@ -11,77 +11,42 @@ Ox.VideoElement = function(options, self) {
})
.options(options || {});
- self.options.src = Ox.isArray(self.options.src) ? self.options.src : [self.options.src];
-
Ox.print('VIDEO ELEMENT OPTIONS', self.options)
- self.currentPart = 0;
- self.duration = 0;
- self.durations = self.options.src.map(function() {
- return 0;
- });
- self.offsets = [];
- self.parts = self.options.src.length;
+ self.items = [];
self.paused = true;
+ self.$video = $('
');
- self.$videos = self.options.src.map(function(src, i) {
- return $('