summary refs log tree commit diff
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2009-04-05 15:00:44 +0200
committerfranck cuny <franck@lumberjaph.net>2009-04-05 15:00:44 +0200
commit5b2f3d00364ea3463bb2c1d18d94f511efc37d96 (patch)
treeed7df843e20521156e38ba8a094c086101707408
parentadd root files (diff)
downloadintention-cloud-5b2f3d00364ea3463bb2c1d18d94f511efc37d96.tar.gz
remove search.js, wrong path
-rw-r--r--root/search.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/root/search.js b/root/search.js
deleted file mode 100644
index b667c92..0000000
--- a/root/search.js
+++ /dev/null
@@ -1,17 +0,0 @@
-$(function() {
-    $("#submit").click(function() {
-        $('#spinner').show();
-        var q = $("input#q").val();
-        var dataString = 'q='+ q;
-        $.ajax({
-            type: "POST",
-            url: "search",
-            data: dataString,
-            success: function() {
-                $('#view').html("<div id='message'>blah!</div>");
-                $('.spinner').hide();
-            }
-        });
-        return false;
-    });
-});