Guest User

Untitled

a guest
Dec 17th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. noteElement = document.getElementById("note");
  2. noteDocument = dbClient.collection("notes").doc(noteId);
  3.  
  4. noteElement.oninput = function(){
  5. noteDocument.set({
  6. owner: uuid,
  7. text: this.innerHTML
  8. });
  9. };
Add Comment
Please, Sign In to add comment