From 1c02b95f82c0b8f268cd666adbf8e470ff52d4da Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sat, 22 Sep 2012 22:02:00 +0200 Subject: [PATCH] dont reset video.src on stop, this happens in GC on dom removal now, fixes #1003 --- source/Ox.UI/js/Video/VideoElement.js | 1 - 1 file changed, 1 deletion(-) diff --git a/source/Ox.UI/js/Video/VideoElement.js b/source/Ox.UI/js/Video/VideoElement.js index a05195bb..5894bc67 100644 --- a/source/Ox.UI/js/Video/VideoElement.js +++ b/source/Ox.UI/js/Video/VideoElement.js @@ -145,7 +145,6 @@ Ox.VideoElement = function(options, self) { // custom event to be triggered on removal from the DOM if (self.video) { self.video.pause(); - self.video.src = ''; } that.triggerEvent('ended'); }