You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
600 B
21 lines
600 B
define([ |
|
"dojo/_base/lang", |
|
"./_PickerChooser!TimePicker" |
|
], function(lang, TimePicker){ |
|
|
|
/*===== |
|
return function(){ |
|
// module: |
|
// dojox/mobile/TimePicker |
|
// summary: |
|
// A wrapper widget around SpinWheelTimePicker or ValuePickerTimePicker. |
|
// Returns ValuePickerTimePicker when the current theme is "android" or "holodark". |
|
// Returns SpinWheelTimePicker otherwise. |
|
|
|
// TODO: need to list all the properties/methods in the interface provided by |
|
// SpinWheelTimePicker / ValuePickerTimePicker |
|
}; |
|
=====*/ |
|
|
|
return lang.setObject("dojox.mobile.TimePicker", TimePicker); |
|
});
|
|
|