This website requires JavaScript.
Explore
Sign In
mirror
/
electron
mirror of
https://github.com/electron/electron
Watch
1
Star
0
Fork
You've already forked electron
0
Code
Issues
Releases
Activity
fix-dangling
electron
/
spec
/
fixtures
/
api
/
shared-worker
/
shared-worker2.js
5 lines
91 B
JavaScript
Raw
Permalink
Normal View
History
Unescape
Escape
feat: allow inspection of specific shared workers (#20389)
2019-10-02 06:38:27 -06:00
self
.
onconnect
=
function
(
e
)
{
build: enable JS semicolons (#22783)
2020-03-20 14:28:31 -06:00
const
port
=
e
.
ports
[
0
]
;
port
.
postMessage
(
'ready'
)
;
}
;