Skip to content

Instantly share code, notes, and snippets.

@kazuhisa
Created May 25, 2016 11:55
Show Gist options
  • Save kazuhisa/ee11128048a7af488483a5effab09978 to your computer and use it in GitHub Desktop.
Save kazuhisa/ee11128048a7af488483a5effab09978 to your computer and use it in GitHub Desktop.
selectNode: (id, items)->
for i,item of items
item.selected = false
if item.id == id
item.selected = true
this.selectNode(id, item.children)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment