we do not want gas factories
[unfold.git] / third-party / jquery-ui-1.10.2 / demos / autocomplete / default.html
diff --git a/third-party/jquery-ui-1.10.2/demos/autocomplete/default.html b/third-party/jquery-ui-1.10.2/demos/autocomplete/default.html
deleted file mode 100644 (file)
index f904eac..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
-       <meta charset="utf-8">
-       <title>jQuery UI Autocomplete - Default functionality</title>
-       <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
-       <script src="../../jquery-1.9.1.js"></script>
-       <script src="../../ui/jquery.ui.core.js"></script>
-       <script src="../../ui/jquery.ui.widget.js"></script>
-       <script src="../../ui/jquery.ui.position.js"></script>
-       <script src="../../ui/jquery.ui.menu.js"></script>
-       <script src="../../ui/jquery.ui.autocomplete.js"></script>
-       <link rel="stylesheet" href="../demos.css">
-       <script>
-       $(function() {
-               var availableTags = [
-                       "ActionScript",
-                       "AppleScript",
-                       "Asp",
-                       "BASIC",
-                       "C",
-                       "C++",
-                       "Clojure",
-                       "COBOL",
-                       "ColdFusion",
-                       "Erlang",
-                       "Fortran",
-                       "Groovy",
-                       "Haskell",
-                       "Java",
-                       "JavaScript",
-                       "Lisp",
-                       "Perl",
-                       "PHP",
-                       "Python",
-                       "Ruby",
-                       "Scala",
-                       "Scheme"
-               ];
-               $( "#tags" ).autocomplete({
-                       source: availableTags
-               });
-       });
-       </script>
-</head>
-<body>
-
-<div class="ui-widget">
-       <label for="tags">Tags: </label>
-       <input id="tags">
-</div>
-
-<div class="demo-description">
-<p>The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are tags for programming languages, give "ja" (for Java or JavaScript) a try.</p>
-<p>The datasource is a simple JavaScript array, provided to the widget using the source-option.</p>
-</div>
-</body>
-</html>