Skip to content

Instantly share code, notes, and snippets.

@cggaurav
Created October 18, 2015 19:54
Show Gist options
  • Save cggaurav/7ba7b238c34e9047c04e to your computer and use it in GitHub Desktop.
Save cggaurav/7ba7b238c34e9047c04e to your computer and use it in GitHub Desktop.
Everybody shuffling?
Chat.shuffle = function() {
_chatThreads.forEach(function(t) {
t.latest_snippet.created_at = (new Date().getTime()) + Math.random() * 1000000;
});
Chat.notifyThreadsChanged();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment