Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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!"
    }
};

New

...

Events Replace Animation Callbacks

The callback properties of showAnimation and hideAnimation are deprecated, replaced by new events which you can define listeners for, onProgressBegin and afterProgressHidden.

...