Versions Compared

Key

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

API

Strings Move to New strings Option

Two options, ariaBusyText and ariaDoneText, have been moved into a new strings option.

If you used...

You'll now use...

Code Block
javascript
javascript
var opts = {
    ariaBusyText: "Almost there: %percentComplete percent done...",
    ariaDoneText: "Yay! You're finished!"
};
Code Block
javascript
javascript
var opts = {
    strings: {
        ariaBusyText: "Almost there: %percentComplete percent done...",
        ariaDoneText: "Yay! You're finished!"
    }
};
Column
Panel
borderColor#566b30
bgColor#fff
titleBGColor#D3E3C4
borderStylesolid
titleOn this PageborderStylesolid
Table of Contents
minlevel2

...