16 lines
387 B
JavaScript
Executable file
16 lines
387 B
JavaScript
Executable file
$(function() {
|
|
|
|
$("button").button();
|
|
|
|
$(".viewButton").click(function() {
|
|
$("#emailFrame").attr("src", "/email_attachments/view/"+$(this).attr("id"));
|
|
});
|
|
|
|
|
|
$(".downloadButton").click(function() {
|
|
window.location.href = "/email_attachments/download/"+$(this).attr("id");
|
|
//$("#emailFrame").attr("src", "/email_attachments/view/"+$(this).attr("id"));
|
|
|
|
});
|
|
|
|
}); |