aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--demos/index.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/demos/index.html b/demos/index.html
index ee07fb2ea..0e820da2e 100644
--- a/demos/index.html
+++ b/demos/index.html
@@ -211,7 +211,12 @@
return false;
}).end().find(">div").hide();
}
- $('#demo-source code').empty().text(source);
+ var cleanedSource = source
+ .replace('themes/base/ui.all.css', 'theme/ui.all.css')
+ .replace(/\s*\x3Clink.*demos\x2Ecss.*\x3E\s*/, '\r\n\t')
+ .replace(/\x2E\x2E\x2F\x2E\x2E\x2F/g, '');
+
+ $('#demo-source code').empty().text(cleanedSource);
}
function resetDemos() {