Skip to content

Instantly share code, notes, and snippets.

@imkost
Created December 5, 2016 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imkost/06e5cb9c6e487e35589951f0023b663f to your computer and use it in GitHub Desktop.
Save imkost/06e5cb9c6e487e35589951f0023b663f to your computer and use it in GitHub Desktop.
const nameElems = watchClass(id => `nameEditor__name-${id}`);
NameEditor.onKeyUp = (input, id) => {
nameElems(id, elem => elem.innerText = input.value);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment