Sha256: 33b8074c190c27f7918f9552f018f90081804e92ed8e29b3ad1ef355112e27f6
Contents?: true
Size: 564 Bytes
Versions: 6
Compression:
Stored size: 564 Bytes
Contents
<!DOCTYPE html> <html> <!-- Copyright 2010 The Closure Library Authors. All Rights Reserved. Use of this source code is governed by the Apache License, Version 2.0. See the COPYING file for details. --> <!-- --> <head> <title>PortChannel test inner document</title> <script src="../../base.js"></script> <script> goog.require('goog.messaging.PortChannel'); </script> </head> <body> <script> var channel = goog.messaging.PortChannel.forGlobalWindow('*'); channel.registerService('ping', function(msg) { channel.send('pong', msg); }); </script> </body> </html>
Version data entries
6 entries across 6 versions & 2 rubygems