aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/demos/autocompleteremote.html
diff options
context:
space:
mode:
Diffstat (limited to 'contexts/data/lib/closure-library/closure/goog/demos/autocompleteremote.html')
-rw-r--r--contexts/data/lib/closure-library/closure/goog/demos/autocompleteremote.html40
1 files changed, 0 insertions, 40 deletions
diff --git a/contexts/data/lib/closure-library/closure/goog/demos/autocompleteremote.html b/contexts/data/lib/closure-library/closure/goog/demos/autocompleteremote.html
deleted file mode 100644
index 710c208..0000000
--- a/contexts/data/lib/closure-library/closure/goog/demos/autocompleteremote.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE html>
-<html>
-<!--
-Copyright 2007 The Closure Library Authors. All Rights Reserved.
-
-Use of this source code is governed by the Apache License, Version 2.0.
-See the COPYING file for details.
--->
-<!--
--->
-<head>
- <title>goog.ui.ac.Remote</title>
- <script src="../base.js"></script>
- <script>
- goog.require('goog.ui.ac.Remote');
- </script>
- <link rel="stylesheet" href="css/demo.css">
- <link rel="stylesheet" href="../css/autocomplete.css">
-</head>
-<body>
- <h1>goog.ui.ac.Remote</h1>
-
- Google Buzzwords:<br>
- <input type="text" id="txtInput" style="width:500px"><br>
- <p>
- This data is being pulled from the server at
- <a href="autocompleteremotedata.js">autocompleteremotedata.js</a>.
- </p>
- <p>
- Ideally the server would perform a search on the query and would only
- return relevant results; however, this response is static.
- </p>
-
- <script>
- var input = document.getElementById('txtInput');
- var ac = new goog.ui.ac.Remote('autocompleteremotedata.js',
- input);
- </script>
-</body>
-</html>