summaryrefslogtreecommitdiff
path: root/web/views/test/potlatch/category.erb
diff options
context:
space:
mode:
Diffstat (limited to 'web/views/test/potlatch/category.erb')
-rw-r--r--web/views/test/potlatch/category.erb17
1 files changed, 0 insertions, 17 deletions
diff --git a/web/views/test/potlatch/category.erb b/web/views/test/potlatch/category.erb
deleted file mode 100644
index 396e426..0000000
--- a/web/views/test/potlatch/category.erb
+++ /dev/null
@@ -1,17 +0,0 @@
-<% @features.each do |row| %>
- <div>&nbsp;&nbsp;<a href="/test/potlatch/features/<%= escape row['name'] %>"><%= row['name'] %></a></div>
-<% end %>
-<script type="text/javascript">
-jQuery('#features a').bind('click', function() {
- jQuery('#features div').removeClass('current');
- jQuery(this).parent().addClass('current');
- jQuery.ajax({
- url: this.href,
- success: function(html) {
- jQuery('#feature').html(html);
- }
- });
- return false;
-});
-
-</script>