Skip to content

Instantly share code, notes, and snippets.

@steveruizok
Last active May 8, 2018 21:44
Show Gist options
  • Save steveruizok/b1eee1b49a36ef690afe31a6cd24fa1b to your computer and use it in GitHub Desktop.
Save steveruizok/b1eee1b49a36ef690afe31a6cd24fa1b to your computer and use it in GitHub Desktop.
_.range(6).forEach (i) ->
b = new Layer
size: 80
y: Align.center()
x: 128 + 96 * i
backgroundColor: "grey"
b.onTap ->
@_special = !@_special
@backgroundColor = if @_special then "orange" else "grey"
for s in @siblings
s._special = false
s.backgroundColor = "grey"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment