Blame view

framework/thirdparty/jasmine-ajax/examples/jquery/public/javascripts/Tweet.js 161 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
  function Tweet(tweet){
    this.postedAt = tweet.created_at;
    this.text = tweet.text;
    this.imageUrl = tweet.profile_image_url;
    this.user = tweet.from_user;
  }