Thanks for the code. Where do I stick it? In the GFdynamicFeedControl.prototype.createListEntries_ function or somewhere else? I wasn't lying I'm totally inept at JavaScript.
Also. do I need to enable any of these variables? transitionCallback : null, feedTransitionCallback : null, feedLoadCallback : null, Thanks in advance. On May 18, 1:43 pm, omr <[email protected]> wrote: > var apiFeedLoad = google.feeds.Feed.prototype.load; > google.feeds.Feed.prototype.load = > function(callback) { > apiFeedLoad.call(this, > function(feedResult) { > var entries = feedResult.feed.entries; > for (var i=0, entry; entry = entries[i]; i++) { > entry.title = entry.contentSnippet; > } > callback(feedResult); > } > ); > }; > > -- > You received this message because you are subscribed to the Google Groups > "Google AJAX APIs" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group > athttp://groups.google.com/group/google-ajax-search-api?hl=en. -- You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en.
