From 65fedc032838cf496c968207fc4809bf2e037c68 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Tue, 26 Jul 2011 11:35:53 +0300 Subject: [PATCH] Unescape HTML entities in examples. --- template/app/controller/Examples.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/template/app/controller/Examples.js b/template/app/controller/Examples.js index 87afed44..4069175f 100644 --- a/template/app/controller/Examples.js +++ b/template/app/controller/Examples.js @@ -85,7 +85,8 @@ Ext.define('Docs.controller.Examples', { replaceExampleDivs: function() { Ext.Array.each(Ext.query('.inline-example'), function(inlineEg) { // Grab code from
 element and replace it with new empty 
- var code = Ext.util.Format.stripTags(inlineEg.innerHTML); + // Strip tags and replace HTML entities with their values + var code = Ext.String.htmlDecode(Ext.util.Format.stripTags(inlineEg.innerHTML)); var div = document.createElement("div"); inlineEg.parentNode.replaceChild(div, inlineEg); // Then render the example component inside the div -- GitLab