From 0e28213c861d224d4d0eceffabd59d0bd90ed913 Mon Sep 17 00:00:00 2001 From: Matt Pass Date: Fri, 3 Feb 2012 07:59:05 +0000 Subject: [PATCH] in content fix Reverse the string replacement to ensure is shown in content as intended --- lib/coder.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/coder.js b/lib/coder.js index 3cd1ead..5f77832 100644 --- a/lib/coder.js +++ b/lib/coder.js @@ -77,6 +77,7 @@ var ICEcoder = { cM = ICEcoder.getcMInstance(); content = cM.getValue(); content = content.replace(' & ',' & '); + content = content.replace('',''); // Then set the content in the editor & clear the history cM.setValue(content);