mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Tooltip: Alphabetized options.
This commit is contained in:
parent
74df32f91e
commit
9e4576bca9
@ -1,8 +1,8 @@
|
|||||||
commonWidgetTests( "tooltip", {
|
commonWidgetTests( "tooltip", {
|
||||||
defaults: {
|
defaults: {
|
||||||
|
content: function() {},
|
||||||
disabled: false,
|
disabled: false,
|
||||||
items: "[title]",
|
items: "[title]",
|
||||||
content: function() {},
|
|
||||||
position: {
|
position: {
|
||||||
my: "left+15 center",
|
my: "left+15 center",
|
||||||
at: "right center"
|
at: "right center"
|
||||||
|
6
ui/jquery.ui.tooltip.js
vendored
6
ui/jquery.ui.tooltip.js
vendored
@ -19,15 +19,15 @@ var increments = 0;
|
|||||||
$.widget( "ui.tooltip", {
|
$.widget( "ui.tooltip", {
|
||||||
version: "@VERSION",
|
version: "@VERSION",
|
||||||
options: {
|
options: {
|
||||||
tooltipClass: null,
|
|
||||||
items: "[title]",
|
|
||||||
content: function() {
|
content: function() {
|
||||||
return $( this ).attr( "title" );
|
return $( this ).attr( "title" );
|
||||||
},
|
},
|
||||||
|
items: "[title]",
|
||||||
position: {
|
position: {
|
||||||
my: "left+15 center",
|
my: "left+15 center",
|
||||||
at: "right center"
|
at: "right center"
|
||||||
}
|
},
|
||||||
|
tooltipClass: null
|
||||||
},
|
},
|
||||||
|
|
||||||
_create: function() {
|
_create: function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user