Created
November 3, 2014 13:46
-
-
Save woniesong92/1fc1f41d9c53d39d95a0 to your computer and use it in GitHub Desktop.
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
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