Skip to content

Instantly share code, notes, and snippets.

@Killavus
Last active August 29, 2015 14:04
Show Gist options
  • Save Killavus/e6bb5279871208a3faae to your computer and use it in GitHub Desktop.
Save Killavus/e6bb5279871208a3faae to your computer and use it in GitHub Desktop.
Photo domain object
class Photos.Photo
constructor: (@id, @url, @alt) ->
grayscaledURL: =>
@url + ".grayscaled.jpg"
@fromJSON: (json) ->
new Photos.Photo(json.id, json.url, json.alt)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment