From 04d9dbf33ca1e099e1501121ac1c83c37a811d4c Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 4 Jul 2012 14:54:24 +0300 Subject: [PATCH] in cssSet innerText changed to innerHTML because firefox doesn't recognize it. --- client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.js b/client.js index 633eae40..04719722 100644 --- a/client.js +++ b/client.js @@ -627,7 +627,7 @@ CloudClient.cssSet = function(pParams_o){ pParams_o.style, pParams_o.id, pParams_o.element?pParams_o.element:document.body); - lElem.innerText=pParams_o.inner; + lElem.innerHTML=pParams_o.inner; }; /*