Skip to content

Instantly share code, notes, and snippets.

@woniesong92
Created November 3, 2014 13:46
Show Gist options
  • Save woniesong92/1fc1f41d9c53d39d95a0 to your computer and use it in GitHub Desktop.
Save woniesong92/1fc1f41d9c53d39d95a0 to your computer and use it in GitHub Desktop.
function init_votes() {
pubnub.history({
channel: 'survey',
start: 0,
callback: function(msg) {
var vote_history = msg[0];
for (var i=0; i<vote_history.length; i++) {
increment(vote_history[i]);
}
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment