summaryrefslogtreecommitdiffstats
path: root/web/widget/date.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/widget/date.js')
-rw-r--r--web/widget/date.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/web/widget/date.js b/web/widget/date.js
deleted file mode 100644
index 23c8fe0..0000000
--- a/web/widget/date.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
- * Copyright (c) 2012-2014 Kaarle Ritvanen
- * See LICENSE file for license details
- */
-
-define(["aconf/widget/field", "jquery-ui/datepicker"], function(Base) {
- return Base.extend({
- createEl: function() {
- return Base.createEl.call(this)
- .datepicker({dateFormat: "yy-mm-dd"});
- }
- });
-});