diff --git a/resources/public/html/cljs-ajax.html b/resources/public/html/cljs-ajax.html
new file mode 100644
index 0000000..46f0bbf
--- /dev/null
+++ b/resources/public/html/cljs-ajax.html
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/resources/public/index.html b/resources/public/index.html
index 8cf95df..fc563d8 100644
--- a/resources/public/index.html
+++ b/resources/public/index.html
@@ -6,6 +6,7 @@
+
@@ -98,6 +111,18 @@
+
+
+
+ To enable cljs-ajax,
+ in addition to scittle.js, you need to include scittle.cljs-ajax.js:
+
+
+
+
+
diff --git a/script/release.clj b/script/release.clj
index 60cf740..0046085 100755
--- a/script/release.clj
+++ b/script/release.clj
@@ -21,8 +21,9 @@
(def html-source-dir (fs/file "resources" "public" "html"))
(def html-target-dir (fs/file "gh-pages" "html"))
(fs/create-dirs html-target-dir)
-(doseq [html ["export.html" "reagent.html"]]
- (fs/copy (fs/file html-source-dir html) html-target-dir))
+(doseq [html ["export.html" "reagent.html" "cljs-ajax.html"]]
+ (fs/copy (fs/file html-source-dir html) html-target-dir
+ {:replace-existing true}))
(def style-source-dir (fs/file "resources" "public" "css"))
(def style-target-dir (fs/file "gh-pages" "css"))