-
Notifications
You must be signed in to change notification settings - Fork 0
/
runnings.js
30 lines (29 loc) · 1.19 KB
/
runnings.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
exports.header = {
height: '1.5cm',
contents: function(pageNum, numPages) {
return (
"<p style='font-size: 10px; display: block; font-family: sans-serif; border-bottom: 1px dotted #CCC; padding-bottom: 10px; margin-bottom: 20px;'><a style='color: #007bff; font-weight: bold; text-decoration: none;' href='https://tecdiary.com/products/simple-business-manager'>Simple Business Manager (Accounting, Invoicing, CRM & Payments)</a> <span style='float:right'>" +
pageNum +
' / ' +
numPages +
'</span></p>'
);
}
};
exports.footer = {
height: '0.8cm',
contents: function(pageNum, numPages) {
if (pageNum == numPages) {
return '';
}
return (
"<p style='font-size: 10px; font-family: sans-serif; border-top: 1px dotted #CCC; padding-top: 4px;'><span style='float:right'>" +
pageNum +
' / ' +
numPages +
'</span> © ' +
new Date().getFullYear() +
' <a style="color: #007bff; font-weight: bold; text-decoration: none;" href="https://tecdiary.com">Tecdiary.com</a> All Rights Reserved.</p>'
);
}
};