|
Revision 5869, 0.7 kB
(checked in by bill, 2 years ago)
|
|
test and fix remote loading for accordion panes
|
| Line | |
|---|
| 1 | <!-- for those of us running php, this will take a few seconds to load, thus testing remote loading delays --> |
|---|
| 2 | <? sleep(3); ?> |
|---|
| 3 | <script> |
|---|
| 4 | dojo.require("dojo.widget.ComboBox"); |
|---|
| 5 | dojo.require("dojo.widget.Button"); |
|---|
| 6 | </script> |
|---|
| 7 | <h1>Document 0</h1> |
|---|
| 8 | This document has <a href="http://www.dojotoolkit.org/">a link</a>.<br /> |
|---|
| 9 | (to check we're copying children around properly).<br /> |
|---|
| 10 | Also it's got a widget, a combo box:<br> |
|---|
| 11 | <select dojoType="combobox"> |
|---|
| 12 | <option value="1">foo</option> |
|---|
| 13 | <option value="2">bar</option> |
|---|
| 14 | <option value="3">baz</option> |
|---|
| 15 | </select> |
|---|
| 16 | And a button too: |
|---|
| 17 | <button dojoType="Button">hello!</button> |
|---|
| 18 | Here's some text that comes AFTER the button. |
|---|