What steps will reproduce the problem?
Call a method without an options object, e.g.
$.twitter.search.hashtag("opendataTO",printSuccess);
What is the expected output? What do you see instead?
Expect no errors, but instead see jQuery object (or G) is null.
Easy fix, add && options to line 136 as in below:
function getAjaxParam(options, url, success){
...
...
...
if (ajaxParams && options) {
//Delete extra parameters
$.each(options, function(key, value){
if ($.inArray(key, ajaxParams) != -1) {
output[key] = value;
}
});
}
...
Original issue reported on code.google.com by LouisStA...@gmail.com on 3 Nov 2009 at 5:48
Original issue reported on code.google.com by
LouisStA...@gmail.com
on 3 Nov 2009 at 5:48