summaryrefslogtreecommitdiff
path: root/views/layout.haml
diff options
context:
space:
mode:
Diffstat (limited to 'views/layout.haml')
-rw-r--r--views/layout.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/layout.haml b/views/layout.haml
index 280301b..b6b4c0e 100644
--- a/views/layout.haml
+++ b/views/layout.haml
@@ -13,7 +13,8 @@
url: uri,
//timeout: 120000;
success: function(data){
- data = "<h4>"+title+"</h4>"+"<button onclick='hide(\"" + title + "\",\"" + element + "\",\"" + uri + "\");'>Hide</button>" + data;
+ var slash = new RegExp("/","g");
+ data = "<h4>"+title+"</h4>"+"<button onclick='hide(\"" + title + "\",\"" + element + "\",\"" + uri + "\");'>Hide</button> <a href=\"" + uri + "/" + uri.replace("/cid/", "").replace(slash,'-') + ".csv\"> (csv)</a>" + data;
$(element).html(data);
},
error: function(data,textStatus,message){
@@ -117,4 +118,3 @@
return false;
});
});
-