Browse Source

Remove unneeded this prefix

Kevin Sawicki 8 years ago
parent
commit
2e6d08c652
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/renderer/window-setup.js

+ 1 - 1
lib/renderer/window-setup.js

@@ -32,7 +32,7 @@ function BrowserWindowProxy (ipcRenderer, guestId) {
   this.closed = false
 
   ipcRenderer.once(`ELECTRON_GUEST_WINDOW_MANAGER_WINDOW_CLOSED_${guestId}`, () => {
-    removeProxy(this.guestId)
+    removeProxy(guestId)
     this.closed = true
   })