diff --git a/vendors/spazcore.js b/vendors/spazcore.js index b8a875d..ed1a5b1 100644 --- a/vendors/spazcore.js +++ b/vendors/spazcore.js @@ -1,4 +1,4 @@ -/*********** Built 2011-07-16 18:56:10 EDT ***********/ +/*********** Built 2011-12-13 10:29:21 EST ***********/ /*jslint browser: true, nomen: false, @@ -13482,6 +13482,7 @@ SpazTwit.prototype.getHomeTimeline = function(since_id, count, page, processing_ if (page) { data['page'] = page; } + data['include_entities'] = true; var url = this.getAPIURL('home_timeline', data); @@ -13597,6 +13598,7 @@ SpazTwit.prototype.getReplies = function(since_id, count, page, processing_opts, if (count) { data['count'] = count; } + data['include_entities'] = true; var url = this.getAPIURL('replies_timeline', data); this._getTimeline({ @@ -13654,6 +13656,7 @@ SpazTwit.prototype.getDirectMessages = function(since_id, count, page, processin if (count) { data['count'] = count; } + data['include_entities'] = true; var url = this.getAPIURL('dm_timeline', data); this._getTimeline({ @@ -13697,6 +13700,7 @@ SpazTwit.prototype.getFavorites = function(since_id, page, processing_opts, onSu if (page) { data['page'] = page; } + data['include_entities'] = true; var url = this.getAPIURL('favorites', data); @@ -13755,6 +13759,7 @@ SpazTwit.prototype.getSentDirectMessages = function(since_id, count, page, proce if (count) { data['count'] = count; } + data['include_entities'] = true; var url = this.getAPIURL('dm_sent', data); this._getTimeline({ @@ -13805,6 +13810,7 @@ SpazTwit.prototype.getUserTimeline = function(id, count, page, onSuccess, onFail if (opts.page) { data['page'] = opts.page; } + data['include_entities'] = true; var url = this.getAPIURL('user_timeline', data); @@ -13945,6 +13951,7 @@ SpazTwit.prototype.search = function(query, since_id, results_per_page, page, la if (geocode) { data['geocode'] = geocode; } + data['include_entities'] = true; var url = this.getAPIURL('search', data); this._getTimeline({ @@ -15380,6 +15387,7 @@ SpazTwit.prototype.destroyDirectMessage = function(id, onSuccess, onFailure) { SpazTwit.prototype.getOne = function(id, onSuccess, onFailure) { var data = {}; data['id'] = id; + data['include_entities'] = true; var url = this.getAPIURL('show', data); @@ -15458,6 +15466,7 @@ SpazTwit.prototype.getRelated = function(id, onSuccess, onFailure) { SpazTwit.prototype.retweet = function(id, onSuccess, onFailure) { var data = {}; data['id'] = id; + data['include_entities'] = true; var url = this.getAPIURL('retweet', data); @@ -15523,6 +15532,7 @@ SpazTwit.prototype.retweetedByMe = function(since, max, count, page){ page = 1; } params['page'] = page; + params['include_entities'] = true; var url = this.getAPIURL('retweeted_by_me', params); var opts = { @@ -15561,6 +15571,7 @@ SpazTwit.prototype.retweetedToMe = function(since, max, count, page){ page = 1; } params['page'] = page; + params['include_entities'] = true; var url = this.getAPIURL('retweeted_to_me', params); var opts = { @@ -15599,6 +15610,7 @@ SpazTwit.prototype.retweetsOfMe = function(since, max, count, page){ page = 1; } params['page'] = page; + params['include_entities'] = true; var url = this.getAPIURL('retweets_of_me', params); var opts = {