Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Section
Column

API

Range Annotation Tooltip Configuration Changed

The way in which the range annotation tooltip is configured has changed. A new subcomponent (a wrapper around jQuery's tooltip) is used for this, and the configuration options are specified within a new tooltip option.

If you used...

You'll now use...

Code Block
javascript
javascript
var opts = {
    tooltipDelay: 150,
    tooltipId: "myTooltip",
    styles: {
        tooltip: ".annotTooltip"
    }
};
Code Block
javascript
javascript
var opts = {
    tooltip: {
        delay: 150
        styles: {
            tooltip: ".annotTooltip"
        }
        // no id is required
    }
};
Column
Panel
borderColor#566b30
bgColor#fff
titleBGColor#D3E3C4
borderStylesolid
titleOn this PageborderStylesolid
Table of Contents
minlevel2

...