This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="event-source.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="event-source-2.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="event-source-4.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| importScripts('jquery.hive.pollen.js'); | |
| $(function (data) { | |
| // message received from rendering process | |
| $.ajax.get({ | |
| url: 'proxy.php', | |
| data: $.param(data), | |
| dataType: 'json', | |
| success: function(jsonObj) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| header("Content-Type: text/event-stream\n\n"); | |
| echo 'data: ' . json_encode( | |
| array( | |
| 0 => array( | |
| 'time' => time(), | |
| 'message' => 'Some kind of foo' | |
| ), | |
| 1 => array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| jQuery.Mines.Charge/Detonate/Disarm() | |
| */ | |
| ;(function($){ | |
| var _payloadCache = {}; | |
| function blast(fuses, args) { | |
| $.each(_payloadCache[fuses], function(){ | |
| this.apply($, args || []); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Um. Duh?</title> | |
| <script src="http://github.com/DmitryBaranovskiy/raphael/raw/master/raphael-min.js"></script> | |
| <script> | |
| // WORKS FINE. | |
| console.log(Raphael); | |