Clean up coffee files
This commit is contained in:
parent
77dbec305f
commit
6d9ca4f52b
2 changed files with 1 additions and 5 deletions
|
@ -79,8 +79,6 @@ BrowserWindow::getPageTitle = -> @webContents.getTitle()
|
||||||
BrowserWindow::isLoading = -> @webContents.isLoading()
|
BrowserWindow::isLoading = -> @webContents.isLoading()
|
||||||
BrowserWindow::isWaitingForResponse = -> @webContents.isWaitingForResponse()
|
BrowserWindow::isWaitingForResponse = -> @webContents.isWaitingForResponse()
|
||||||
BrowserWindow::stop = -> @webContents.stop()
|
BrowserWindow::stop = -> @webContents.stop()
|
||||||
BrowserWindow::getRoutingId = -> @webContents.getRoutingId()
|
|
||||||
BrowserWindow::getProcessId = -> @webContents.getProcessId()
|
|
||||||
BrowserWindow::isCrashed = -> @webContents.isCrashed()
|
BrowserWindow::isCrashed = -> @webContents.isCrashed()
|
||||||
BrowserWindow::executeJavaScriptInDevTools = (code) -> @devToolsWebContents?.executeJavaScript code
|
BrowserWindow::executeJavaScriptInDevTools = (code) -> @devToolsWebContents?.executeJavaScript code
|
||||||
BrowserWindow::openDevTools = -> @webContents.openDevTools.apply @webContents, arguments
|
BrowserWindow::openDevTools = -> @webContents.openDevTools.apply @webContents, arguments
|
||||||
|
|
|
@ -79,9 +79,7 @@ wrapWebContents = (webContents) ->
|
||||||
if options.printBackgrounds
|
if options.printBackgrounds
|
||||||
printingSetting.shouldPrintBackgrounds = options.printBackground
|
printingSetting.shouldPrintBackgrounds = options.printBackground
|
||||||
|
|
||||||
webContents._printToPDF printingSetting, callback
|
@_printToPDF printingSetting, callback
|
||||||
|
|
||||||
webContents
|
|
||||||
|
|
||||||
binding._setWrapWebContents wrapWebContents
|
binding._setWrapWebContents wrapWebContents
|
||||||
process.once 'exit', binding._clearWrapWebContents
|
process.once 'exit', binding._clearWrapWebContents
|
||||||
|
|
Loading…
Reference in a new issue