summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
Diffstat (limited to 'app/views')
-rw-r--r--app/views/search/go.html.erb18
1 files changed, 17 insertions, 1 deletions
diff --git a/app/views/search/go.html.erb b/app/views/search/go.html.erb
index 0f689d5..6e48b07 100644
--- a/app/views/search/go.html.erb
+++ b/app/views/search/go.html.erb
@@ -1,3 +1,7 @@
+<h5 id="search-down">&#x25B2; Advanced Search &#x25B2;</h5>
+<div id="advanced-search">
+ <p> This is where the search will go </p>
+</div>
<%# Show search results if a query was not nill %>
<% if !@query.empty? %>
@@ -21,4 +25,16 @@
<% end %>
<% end %>
-<% end %> \ No newline at end of file
+<% end %>
+
+<script type="text/javascript" language="javascript">
+
+ $(document).ready(function() {
+
+ $("#search-down").click(function(){
+ $("#search-down").text("▼ Advanced Search ▼").html();
+ $("#advanced-search").slideDown( 'slow');
+ });
+
+ });
+</script> \ No newline at end of file