Index: trunk/extensions/UploadWizard/UploadWizardHooks.php |
— | — | @@ -5,18 +5,16 @@ |
6 | 6 | */ |
7 | 7 | class UploadWizardHooks { |
8 | 8 | |
9 | | - /* We define scripts here for Resource Loader, but in the meantime we are going to load these the old-fashioned way |
10 | | - (see SpecialUploadWizard.php). |
| 9 | + /* We define scripts here for Resource Loader */ |
11 | 10 | |
12 | | - So this list of scripts has to be topologically-sorted by hand. That is, the depended-upon stuff comes first. |
13 | | - There can be no circular dependencies. */ |
14 | | - |
15 | 11 | public static $modules = array( |
16 | 12 | 'ext.uploadWizard' => array( |
17 | 13 | 'dependencies' => array( |
| 14 | + 'jquery.ui.core', |
18 | 15 | 'jquery.ui.dialog', |
19 | 16 | 'jquery.ui.datepicker', |
20 | | - 'jquery.ui.progressbar' |
| 17 | + 'jquery.ui.progressbar', |
| 18 | + 'jquery.ui.widget' |
21 | 19 | ), |
22 | 20 | 'scripts' => array( |
23 | 21 | |