From 68fa55aaf897e13109ac06bc3e1539d069a17cb3 Mon Sep 17 00:00:00 2001 From: bnu Date: Sun, 21 Sep 2008 05:49:48 +0000 Subject: [PATCH] =?UTF-8?q?17298725=20=20=20*=20options=EC=9D=B4=20?= =?UTF-8?q?=EC=97=86=EC=9D=84=20=EB=95=8C=20=EC=98=A4=EB=A5=98=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4539 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- common/js/common.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/common/js/common.js b/common/js/common.js index 9899d4d7e..539eea84b 100644 --- a/common/js/common.js +++ b/common/js/common.js @@ -254,8 +254,10 @@ function displayMultimedia(src, width, height, options) { flashvars : '' }; - var autostart = (options.autostart) ? 'true' : 'false'; - delete(options.autostart); + if(options) { + var autostart = (options.autostart) ? 'true' : 'false'; + delete(options.autostart); + } var params = objectExtend(defaults, options || {});