cmc-sales/webroot/js/email_frame.js
2011-03-10 18:18:26 +11:00

16 lines
387 B
JavaScript

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