Moving more examples to the demos repo MKWS-354
[mkws-moved-to-github.git] / examples / htdocs / popup.html
diff --git a/examples/htdocs/popup.html b/examples/htdocs/popup.html
deleted file mode 100644 (file)
index 256d695..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-<html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>MKWS demo: Popup Widget</title>
-    <link rel="stylesheet" type="text/css" href="//mkws.indexdata.com/mkws.css" />
-
-    <script type="text/javascript">
-      var mkws_config = {
-       sp_auth_credentials: "mkwstest/mkwstest"
-      };
-    </script>
-
-    <script type="text/javascript" src="//mkws.indexdata.com/mkws-complete.js"></script>
-
-    <link rel="stylesheet" type="text/css" href="//code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
-    <!-- jquery-ui need a reference to the internal jQuery object -->
-    <script>$ = jQuery = mkws.$; </script>
-    <script type="text/javascript" src="//code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script>
-
-    <style>
-    .mkws-search { float: left !important; }
-    .mkws-search input.mkws-button { color: black; }
-    </style>
-  </head>
-
-  <body>
-    <h3>MKWS demo: popup widget(s)</h3>
-
-    <div>
-      <p><a id="popup_no1">popup number 1</a></p>
-      <p><a id="popup_no2">popup number 2</a></p>
-    </div>
-
-    <!-- search box is outside the popup window -->
-    <div class="mkws-search"></div>
-
-    <!-- popup widget config -->
-    <div class="mkws-popup" popup_width="1024" popup_height="750" popup_modal="0" popup_autoOpen="0" popup_button="input.mkws-button">
-      <div class="mkws-switch"></div>
-      <div class="mkws-lang"></div>
-      <div class="mkws-results"></div>
-      <div class="mkws-targets"></div>
-      <div class="mkws-stat"></div>
-    </div>
-
-    <!-- popup widget config -->
-    <div class="mkws-popup" popup_width="500" popup_height="350" popup_modal="0" popup_autoOpen="0" popup_button="a#popup_no1">
-       <h1>popup no 1</h1>
-       some text...
-    </div>
-
-    <div class="mkws-popup" popup_width="400" popup_height="250" popup_modal="0" popup_autoOpen="0" popup_button="a#popup_no2">
-       <h1>popup no 2</h1>
-       other text...
-    </div>
-
-  </body>
-</html>