jquery-ui/tests/unit/datepicker/common.js
2015-07-15 09:40:38 -04:00

36 lines
518 B
JavaScript

define( [
"lib/common",
"ui/datepicker",
"globalize-locales"
], function( common ) {
common.testWidget( "datepicker", {
defaults: {
appendTo: null,
buttons: [],
classes: {},
dateFormat: { date: "short" },
disabled: false,
eachDay: $.noop,
max: null,
min: null,
numberOfMonths: 1,
position: {
my: "left top",
at: "left bottom"
},
show: true,
showWeek: false,
hide: true,
// callbacks
beforeOpen: null,
close: null,
create: null,
open: null,
select: null
}
});
} );