mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
Don't include routing ID in WebContents's ID
This commit is contained in:
@@ -25,7 +25,7 @@ wrapWebContents = (webContents) ->
|
||||
webContents.once 'did-finish-load', @_executeJavaScript.bind(this, code)
|
||||
|
||||
# The processId and routingId and identify a webContents.
|
||||
webContents.getId = -> "#{@getProcessId()}-#{@getRoutingId()}"
|
||||
webContents.getId = -> @getProcessId()
|
||||
webContents.equal = (other) -> @getId() is other.getId()
|
||||
|
||||
# The navigation controller.
|
||||
|
||||
Reference in New Issue
Block a user