mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
25 lines
431 B
JavaScript
25 lines
431 B
JavaScript
|
TestHelpers.commonWidgetTests( "tooltip", {
|
||
|
defaults: {
|
||
|
classes: {
|
||
|
"ui-tooltip": "ui-corner-all ui-widget-shadow"
|
||
|
},
|
||
|
content: function() {},
|
||
|
disabled: false,
|
||
|
hide: true,
|
||
|
items: "[title]:not([disabled])",
|
||
|
position: {
|
||
|
my: "left top+15",
|
||
|
at: "left bottom",
|
||
|
collision: "flipfit flip"
|
||
|
},
|
||
|
show: true,
|
||
|
tooltipClass: null,
|
||
|
track: false,
|
||
|
|
||
|
// callbacks
|
||
|
close: null,
|
||
|
create: null,
|
||
|
open: null
|
||
|
}
|
||
|
});
|