Remove demos that have moved to the demos repo.
[mkws-moved-to-github.git] / examples / htdocs / async.html
diff --git a/examples/htdocs/async.html b/examples/htdocs/async.html
deleted file mode 100644 (file)
index 25241d4..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>MKWS demo: Async feeling.</title>
-    <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.0.min.js"></script>
-    <script type="text/javascript" src="http://mkws.indexdata.com/jquery.json-2.4.js"></script>
-    <script type="text/javascript" src="http://mkws.indexdata.com/jsnlog.min.js"></script>
-    <script type="text/javascript" src="http://mkws.indexdata.com/handlebars-v2.0.0.js"></script>
-    <script type="text/javascript" src="http://mkws.indexdata.com/pazpar2/js/pz2.js"></script>
-    <script type="text/javascript" src="http://mkws.local/mkws.js"></script>
-    <link rel="stylesheet" type="text/css" href="mkws-widget-wikipedia.css" />
-  </head>
-  <body>
-    <div id="first"></div>
-    <script type="text/javascript">
-      $("#first").html("<div class='mkws-reference' autosearch='one' sentences='1'>result will appear here</div>");
-      mkws.init("First div", "#first");
-    </script>
-    <div id="second"></div>
-    <script type="text/javascript">
-      $("#second").html("<div class='mkws-reference' autosearch='two' sentences='1'>result will appear here</div>");
-      mkws.init("Second div", document.getElementById("second"));
-    </script>
-    <div id="third"></div>
-    <script type="text/javascript">
-      $("#third").html("<div class='mkws-reference' autosearch='three' sentences='1'>result will appear here</div>");
-      mkws.init("Third div", "#third");
-    </script>
-    <div class='mkws-reference' autosearch='four' sentences='1'>This would have been four but we're not searching it.</div>
-  </body>
-</html>