Last active
May 8, 2018 21:44
-
-
Save steveruizok/b1eee1b49a36ef690afe31a6cd24fa1b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_.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