We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bf7ccd commit e861a75Copy full SHA for e861a75
1 file changed
signaturenDruck/js/renderer.js
@@ -9,7 +9,7 @@ const _ = require('lodash')
9
const fs = require('fs')
10
11
// required for ipc calls to the main process
12
-const {ipcMain, ipcRenderer, remote} = require('electron')
+const { ipcMain, ipcRenderer, remote } = require('electron')
13
14
const config = remote.getGlobal('config')
15
const sigJSONFile = remote.getGlobal('sigJSONFile')
@@ -147,7 +147,7 @@ function closeButton () {
147
// gathers the data to print and invokes printing via ipc
148
function printButton () {
149
const print = new p(sigJSONFile, table.formats, table.manualSignature)
150
- console.warn(print.dataAll)
+ // console.warn(print.dataAll)
151
ipcRenderer.send('print', print.dataAll)
152
}
153
0 commit comments