Skip to content

Instantly share code, notes, and snippets.

@STRd6
Created June 17, 2014 15:31
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 STRd6/92148d05cf7c8d9f280c to your computer and use it in GitHub Desktop.
Save STRd6/92148d05cf7c8d9f280c to your computer and use it in GitHub Desktop.
Hamlet
Tab = (name, content) ->
name: name
content: content
tabs = [1..3].map (i) ->
Tab "Tab#{i}", "Hello from tab #{i}"
model =
tabs: tabs
activeTab: Observable tabs[0]
content: ->
@activeTab().content
- model = this
- click = ->
- model.activeTab this
- console.log "wat"
.tabs
- each @tabs, ->
%span(click=click)= @name
.content= @content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment