fix(print): Update logo

This commit is contained in:
Juan Tejada 2016-05-09 20:13:32 -07:00
parent 182b8fe37e
commit bff232e892
2 changed files with 1 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -12,7 +12,7 @@ export default class PrintWindow {
// call window.print() after we've cleaned up the dom for printing
const scriptPath = path.join(__dirname, '..', 'static', 'print.js');
const stylesPath = path.join(__dirname, '..', 'static', 'print-styles.css');
const imgPath = path.join(__dirname, '..', 'assets', 'nylas-print-logo.png');
const imgPath = path.join(__dirname, '..', 'assets', 'nylas-print-logo@2x.png');
const participantsHtml = participants.map((part) => {
return (`<li class="participant"><span>${part.name} &lt;${part.email}&gt;</span></li>`);
}).join('');