Skip to content

Instantly share code, notes, and snippets.

@dmcgrath
Created December 15, 2017 03:08
Show Gist options
  • Save dmcgrath/5371a02ff5aa4487dc8b34fae829357a to your computer and use it in GitHub Desktop.
Save dmcgrath/5371a02ff5aa4487dc8b34fae829357a to your computer and use it in GitHub Desktop.
Write changes
noteElement = document.getElementById("note");
noteDocument = dbClient.collection("notes").doc(noteId);
noteElement.oninput = function(){
noteDocument.set({
owner: uuid,
text: this.innerHTML
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment