Skip to content

Commit

Permalink
add jquery plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
t-ashula committed Feb 18, 2014
1 parent b80e852 commit aa0e3a8
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions src/plugins/jquery.js
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,49 @@ exports.evaluator = function (win) {
'jQuery': ['jatt']
}
});
ds.push({
name: 'jQuery Social Button',
test: function ($) {
return 'socialbutton' in $.fn;
},
info: function ($) {
return {
'url': 'http://itra.jp/jquery_socialbutton_plugin/'
};
},
provides: {
'jQuery.fn': ['cosialbutton']
}
});
ds.push({
name: 'jQuery pjax',
test: function ($) {
return 'pjax' in $ && 'pjax' in $.fn;
},
info: function ($) {
return {
'url': 'https://github.com/defunkt/jquery-pjax'
};
},
provides: {
'jQuery': ['pjax'],
'jQuery.fn': ['pjax']
}
});
ds.push({
name: 'jQuery bottom',
test: function ($) {
return 'bottom' in $.fn;
},
info: function ($) {
return {
'url': 'https://github.com/jimyi/jquery_bottom'
};
},
provides: {
'jQuery.fn': ['bottom']
}
});

return ds;
}
Expand Down

0 comments on commit aa0e3a8

Please sign in to comment.