diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-05-28 20:19:23 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-05-28 20:19:23 -0400 |
commit | 9e4576bca9508d5d01f3fdf518c6b50c0d110ffb (patch) | |
tree | 6eee8ee7bb9d05ca831b280750c083bad4b970b0 /ui/jquery.ui.tooltip.js | |
parent | 74df32f91e49f47136de99c6bc86de1b9d145c5c (diff) | |
download | jquery-ui-9e4576bca9508d5d01f3fdf518c6b50c0d110ffb.tar.gz jquery-ui-9e4576bca9508d5d01f3fdf518c6b50c0d110ffb.zip |
Tooltip: Alphabetized options.
Diffstat (limited to 'ui/jquery.ui.tooltip.js')
-rw-r--r-- | ui/jquery.ui.tooltip.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js index f2bae00bd..236e95ae8 100644 --- a/ui/jquery.ui.tooltip.js +++ b/ui/jquery.ui.tooltip.js @@ -19,15 +19,15 @@ var increments = 0; $.widget( "ui.tooltip", { version: "@VERSION", options: { - tooltipClass: null, - items: "[title]", content: function() { return $( this ).attr( "title" ); }, + items: "[title]", position: { my: "left+15 center", at: "right center" - } + }, + tooltipClass: null }, _create: function() { |