Skip to content

Instantly share code, notes, and snippets.

@inossidabile
Created January 25, 2012 19:00
Show Gist options
  • Save inossidabile/1677915 to your computer and use it in GitHub Desktop.
Save inossidabile/1677915 to your computer and use it in GitHub Desktop.
Sample Joosy page
Joosy.namespace 'Welcome', ->
class @IndexPage extends ApplicationPage
@layout MediaLayout
@view 'pages/welcome/index'
@fetch (complete) ->
$.get "/cities/#{currentCity.id}/items", (@data) =>
complete()
@beforeLoad ->
@requiresCity()
@afterLoad ->
@layout.clearMenu()
widgets:
'.entity_container': (i) -> new EntityWidget i, @data.items[i]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment