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
// Central xhr progress tracker. Used for both a global | |
// activity indicator as well as granular spinners within in a page. | |
var Progress$ = new Rx.Subject(); | |
// Make an xhr call and make a tag to track the progress ticks. | |
var users$ = Rx.DOM.ajax({ | |
method: 'GET', | |
url: 'https://api.github.com/users', | |
responseType: 'json', | |
progressObserver: Rx.Observer.create( |
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> | |
<meta charset="UTF-8"> | |
<title>AWS IoT Pub/Sub Demo</title> | |
</head> | |
<body> | |
<h1>AWS IoT Pub/Sub Demo</h1> | |
<form> | |
<button type="button" id="connect">connect!</button> |
OlderNewer