mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
17 lines
285 B
JavaScript
17 lines
285 B
JavaScript
/*
|
|
* tooltip_defaults.js
|
|
*/
|
|
|
|
var tooltip_defaults = {
|
|
disabled: false,
|
|
items: "[title]",
|
|
content: $.ui.tooltip.prototype.options.content,
|
|
position: {
|
|
my: "left center",
|
|
at: "right center",
|
|
offset: "15 0"
|
|
}
|
|
};
|
|
|
|
commonWidgetTests('tooltip', { defaults: tooltip_defaults });
|