Don't include routing ID in WebContents's ID
This commit is contained in:
parent
b3905e867e
commit
89c7028ed1
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ wrapWebContents = (webContents) ->
|
||||||
webContents.once 'did-finish-load', @_executeJavaScript.bind(this, code)
|
webContents.once 'did-finish-load', @_executeJavaScript.bind(this, code)
|
||||||
|
|
||||||
# The processId and routingId and identify a webContents.
|
# The processId and routingId and identify a webContents.
|
||||||
webContents.getId = -> "#{@getProcessId()}-#{@getRoutingId()}"
|
webContents.getId = -> @getProcessId()
|
||||||
webContents.equal = (other) -> @getId() is other.getId()
|
webContents.equal = (other) -> @getId() is other.getId()
|
||||||
|
|
||||||
# The navigation controller.
|
# The navigation controller.
|
||||||
|
|
Loading…
Reference in a new issue