OLD | NEW |
---|---|
1 // Send "Foo" back to the parent page - script works for both shared and dedicat ed workers | 1 // Send "Foo" back to the parent page - script works for both shared and dedicat ed workers |
2 if (self.postMessage) | 2 if (self.postMessage) |
3 postMessage("Foo"); | 3 postMessage("Foo"); |
4 else | 4 else |
5 self.onconnect = function(event) { event.ports[0].postMessage("Foo"); } | 5 self.onconnect = function(event) { event.ports[0].postMessage("Foo"); } |
6 | 6 |
OLD | NEW |