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
sending request for data: | |
{ | |
"filter": { | |
"hosted_by_meters_saved_search": "8ASDF9751HFASF98SS", | |
"transport": [ | |
{ | |
"port": 53723, | |
"protocol": 6 | |
}, | |
{ |
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
// all rollup state is held here | |
private /** | |
* this is an internal field. don't mess with it. | |
*/ | |
final /** | |
* it is also final and cannot be reassigned. | |
*/ | |
ConcurrentNavigableMap< /** | |
* the name of this class is ConcurrentNavigableMap | |
*/ |
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
for (var i = 0; i < 6; i++) { | |
var name = 'ep' + i + '_player'; | |
document.getElementById('episode' + i).addEventListener('click', function(evt) { | |
showEpisode(name); evt.stopPropagation(); | |
}); | |
name = 'ep' + i + '_preview_player' | |
document.getElementById('episode' + i + '_preview').addEventListener('click', function(evt) { | |
showEpisode(name); evt.stopPropagation(); | |
}); |