From 10af31f042e306830e7494f9522331bdaa6c3ed8 Mon Sep 17 00:00:00 2001 From: hide_d Date: Thu, 6 Sep 2018 23:38:47 +0900 Subject: [PATCH] =?UTF-8?q?customCSS=EB=A5=BC=20=EC=A1=B0=EA=B8=88=20?= =?UTF-8?q?=EB=8D=94=20=EC=95=88=EC=A0=84=ED=95=98=EA=B2=8C=20=EC=A0=81?= =?UTF-8?q?=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/js/common.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hwe/js/common.js b/hwe/js/common.js index 20000f14..bedfba52 100644 --- a/hwe/js/common.js +++ b/hwe/js/common.js @@ -153,6 +153,8 @@ jQuery(function($){ var customCSS = localStorage.getItem('sam_customCSS'); if(customCSS){ - $('').appendTo($('head')); + var $style = $(''); + $style.text(customCSS); + $style.appendTo($('head')); } });