Section |
---|
Column |
---|
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!"
}
};
|
|
|
Column |
---|
Panel |
---|
borderColor | #566b30 |
---|
bgColor | #fff |
---|
titleBGColor | #D3E3C4 |
---|
borderStyle | solid |
---|
title | On this Page |
---|
| |
|
|
New Events Replace Animation Callbacks
...
For details on how to use these new options, see the Progress API page.
Dependencies
The only change in dependencies for Progress is the addition of a jQuery plugin, jquery.bgiframe.js
.
Old Dependencies |
---|
Code Block |
---|
|
<script type="text/javascript" src="lib/jquery/core/js/jquery.js"></script>
<script type="text/javascript" src="lib/jquery/ui/js/ui.core.js"></script>
<script type="text/javascript" src="framework/core/js/Fluid.js"></script>
<script type="text/javascript" src="components/progress/js/Progress.js"></script>
|
|
New Dependencies |
---|
Code Block |
---|
|
<script type="text/javascript" src="lib/jquery/core/js/jquery.js"></script>
<script type="text/javascript" src="lib/jquery/ui/js/ui.core.js"></script>
<script type="text/javascript" src="lib/jquery/plugins/bgiframe/js/jquery.bgiframe.js"></script>
<script type="text/javascript" src="framework/core/js/Fluid.js"></script>
<script type="text/javascript" src="components/progress/js/Progress.js"></script>
|
|