Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <body>
  2. <script>
  3. channel = new goog.appengine.Channel('{{ token }}');
  4. socket = channel.open();
  5. socket.onopen = onOpened;
  6. socket.onmessage = onMessage;
  7. socket.onerror = onError;
  8. socket.onclose = onClose;
  9. </script>
  10. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement