You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
476 B
31 lines
476 B
define( [
|
|
"lib/common",
|
|
"ui/widgets/tooltip"
|
|
], function( common ) {
|
|
|
|
common.testWidget( "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,
|
|
track: false,
|
|
|
|
// Callbacks
|
|
close: null,
|
|
create: null,
|
|
open: null
|
|
}
|
|
} );
|
|
|
|
} );
|