Tooltip: Alphabetized options.

This commit is contained in:
Scott González 2011-05-28 20:19:23 -04:00
parent 74df32f91e
commit 9e4576bca9
2 changed files with 4 additions and 4 deletions

View File

@ -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"

View File

@ -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() {