aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--demos/index.html2
-rw-r--r--release/build.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/index.html b/demos/index.html
index 726e2622d..9680fe787 100644
--- a/demos/index.html
+++ b/demos/index.html
@@ -165,7 +165,7 @@
updateDemoNotes();
});
if (/default.html$/.test(path)) {
- $.get("documentation/docs-" + path.match(/demos\/(.+)\//)[1] + ".html", function(html) {
+ $.get("../documentation/docs-" + path.match(/demos\/(.+)\//)[1] + ".html", function(html) {
$("#demo-notes").after(html);
$("#widget-docs").tabs();
$(".param-header").click(function() {
diff --git a/release/build.xml b/release/build.xml
index 50960735f..9fe67ec5e 100644
--- a/release/build.xml
+++ b/release/build.xml
@@ -234,7 +234,7 @@
</target>
<target name="docs-process" depends="docs-download">
- <property name="docs.dir" value="${ui.dir}/demos/documentation" />
+ <property name="docs.dir" value="${ui.dir}/documentation" />
<delete dir="${docs.dir}" />
<mkdir dir="${docs.dir}" />
<xslt includes="docs-*.xml" destdir="${docs.dir}" style="build/style.xsl" />