APIStrings Move to New strings OptionTwo options, ariaBusyText and ariaDoneText , have been moved into a new strings option. If you used... | You'll now use... |
---|
Code Block |
---|
|
var opts = {
ariaBusyText: "Almost there: %percentComplete percent done...",
ariaDoneText: "Yay! You're finished!"
};
|
| Code Block |
---|
|
var opts = {
strings: {
ariaBusyText: "Almost there: %percentComplete percent done...",
ariaDoneText: "Yay! You're finished!"
}
};
|
|
|