Skip to content

Instantly share code, notes, and snippets.

@Killavus
Created July 17, 2014 21:01
Show Gist options
  • Save Killavus/36033f695e36fc42576c to your computer and use it in GitHub Desktop.
Save Killavus/36033f695e36fc42576c to your computer and use it in GitHub Desktop.
Example app for photos displaying
class Photos.App
constructor: ->
@gui = new Photos.Gui($("#photos-list"))
@backend = new Photos.Backend()
start: =>
@backend.fetchPhotos()
.done(
(photos) =>
for photo in photos
@gui.addPhoto(photo)
)
.fail(@gui.fetchPhotosFailed)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment