From 109e34725cd45bb3955d6accfb3607706491fec9 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Wed, 28 Dec 2011 15:59:53 +0530 Subject: [PATCH] resolution is data.checked --- source/Ox.UI/js/Video/Ox.VideoEditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox.UI/js/Video/Ox.VideoEditor.js b/source/Ox.UI/js/Video/Ox.VideoEditor.js index 683f76bf..fbad0598 100644 --- a/source/Ox.UI/js/Video/Ox.VideoEditor.js +++ b/source/Ox.UI/js/Video/Ox.VideoEditor.js @@ -442,7 +442,7 @@ Ox.VideoEditor = function(options, self) { width: 256 }).open(); } else if (id == 'resolution') { - self.options.resolution = parseInt(data.value); + self.options.resolution = parseInt(data.checked[0].id); self.$player[0].options({resolution: self.options.resolution}); } }