Skip to content

Instantly share code, notes, and snippets.

@deanhume
Created May 19, 2016 08:08
Show Gist options
  • Save deanhume/b8a1b5edabd875f38fbd786be8a7a835 to your computer and use it in GitHub Desktop.
Save deanhume/b8a1b5edabd875f38fbd786be8a7a835 to your computer and use it in GitHub Desktop.
Firebase listen to updates
messagesRef.limitToLast(10).on('child_added', function (snapshot) {
var data = snapshot.val();
var message = data.text;
if (message != undefined)
{
messageResults.value += '\n' + message;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment