From f28ffcf9c2766f2047cedd001c012fb75248bcbb Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 20 Aug 2013 13:40:20 +0530 Subject: [PATCH] [fix] [minor] letterhead max-width as 100% in print format --- public/js/legacy/print_format.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/js/legacy/print_format.js b/public/js/legacy/print_format.js index ca820f1257..a7521117b1 100644 --- a/public/js/legacy/print_format.js +++ b/public/js/legacy/print_format.js @@ -311,7 +311,8 @@ $.extend(_p, { // Attach letterhead at top of container show_letterhead: function(container, args) { if(!(args.no_letterhead || args.only_body)) { - container.innerHTML = '
' + _p.get_letter_head() + '
' + container.innerHTML = '
' + + _p.get_letter_head() + '
' + container.innerHTML; } },