cmc-sales/php/app/webroot/js/email_frame.js

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"));
});
});