Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion twitter/jquery.tweet.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
$.fn.tweet = function(o){
var s = $.extend({
modpath: "/twitter/", // [string] relative URL to Tweet.js mod (see https://github.com/StanScates/Tweet.js-Mod)
extra_params: {}, // [object] additional paremeters to get posted together with the request
username: null, // [string or array] required unless using the 'query' option; one or more twitter screen names (use 'list' option for multiple names, where possible)
list_id: null, // [integer] ID of list to fetch when using list functionality
list: null, // [string] optional slug of list belonging to username
Expand Down Expand Up @@ -271,7 +272,7 @@
type: "post",
async: false,
url: s.modpath || "/twitter/",
data: { request: build_api_request() },
data: $.extend(true, { request: build_api_request() }, s.extra_params ),
success: function(data, status) {

if(data.message) {
Expand Down