こっちもよろしく。

class Tweet extends Backbone.Model
 defautls:
  'from_user': ''
  'profile_image_url': ''
  'text': ''

class TweetList extends Backbone.Collection
 model: Tweet
 initialize: ->
 update: (query) ->
  api.getTweets(query).done (tweets) =>
   @reset(tweets)
   if not tweets.length then @trigger('noresults')