aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/javascripts/plugins
diff options
context:
space:
mode:
authorMarc Florisson2014-05-22 14:00:32 +0200
committerMarc Florisson2014-05-22 14:00:32 +0200
commit21b05c1fd97c4b204dce4bc9268823604db3eabc (patch)
treed381b7e377b18088efc9e649fb806d9a2650fe63 /app/assets/javascripts/plugins
parentf3dc45b3f62e55cf1d060ab67c2fdaea6443b13c (diff)
parent02d82ddb60ed40b380800b9a04f907c582c5e42f (diff)
downloadchouette-core-21b05c1fd97c4b204dce4bc9268823604db3eabc.tar.bz2
Merge branch 'master' into fix_stop_point_on_route
Diffstat (limited to 'app/assets/javascripts/plugins')
-rw-r--r--app/assets/javascripts/plugins/jquery.ui.datepicker-i18n.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/plugins/jquery.ui.datepicker-i18n.js b/app/assets/javascripts/plugins/jquery.ui.datepicker-i18n.js
index b7748a77a..ef2bfb631 100644
--- a/app/assets/javascripts/plugins/jquery.ui.datepicker-i18n.js
+++ b/app/assets/javascripts/plugins/jquery.ui.datepicker-i18n.js
@@ -47,7 +47,7 @@ jQuery(function($){
{
$(element).datepicker(
{
- dateFormat: "dd/mm/y",
+ dateFormat: "dd/mm/yy",
dayNamesShort: $.datepicker.regional[ $('html').attr('lang') ].dayNamesShort,
dayNames: $.datepicker.regional[ $('html').attr('lang') ].dayNames,
monthNamesShort: $.datepicker.regional[ $('html').attr('lang') ].monthNamesShort,
@@ -55,7 +55,7 @@ jQuery(function($){
} );
if ($(element).val().indexOf('/') >= 0)
{
- $(element).datepicker("setDate", $.datepicker.parseDate('dd/mm/y', $(element).val() ) );
+ $(element).datepicker("setDate", $.datepicker.parseDate('dd/mm/yy', $(element).val() ) );
}
else
{
@@ -68,7 +68,7 @@ jQuery(function($){
$this.find("input[type='date']").each(
function(index, element)
{
- var date = $.datepicker.formatDate('yy-mm-dd', $.datepicker.parseDate('dd/mm/y', $(element).val() ) );
+ var date = $.datepicker.formatDate('yy-mm-dd', $.datepicker.parseDate('dd/mm/yy', $(element).val() ) );
$(element).val(date);
}
);