Created
May 25, 2013 18:27
-
-
Save djkz/5650184 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
class Entities.Tasks extends Backbone.Collection | |
model: Entities.Task | |
url: -> "/project/#{@project_id}/tasks.json" | |
constructor: (options) -> | |
@project_id = options.project_id | |
super | |
project_tasks = new Entities.Tasks {project_id:project.id} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment