jasmine-ajax/examples/jquery/public/javascripts/Tweet.js
Davis W. Frank, dwfrank & Hunter Gillane 754b3f6a62 project re-org for grand refactor
2010-09-16 10:14:39 -07:00

7 lines
161 B
JavaScript

function Tweet(tweet){
this.postedAt = tweet.created_at;
this.text = tweet.text;
this.imageUrl = tweet.profile_image_url;
this.user = tweet.from_user;
}