summaryrefslogtreecommitdiffstats
path: root/web/widget/date.js
blob: 0f97e0891c35ac98964b34aaee1b0dbb3607f1ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2012-2014 Kaarle Ritvanen
 * See LICENSE file for license details
 */

define(["acf2/widget/field", "jquery-ui/datepicker"], function(Base) {
    return Base.extend({
	createEl: function() {
	    return Base.createEl.call(this)
		.datepicker({dateFormat: "yy-mm-dd"});
	}
    });
});