mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
7 lines
320 B
JavaScript
7 lines
320 B
JavaScript
/* Swiss-French initialisation for the jQuery UI date picker plugin. */
|
|
/* Written Martin Voelkle (martin.voelkle@e-tc.ch). */
|
|
jQuery(function($){
|
|
$.datepicker.regional['fr-CH'] =
|
|
$.extend({}, $.datepicker.regional['fr'], {dateFormat: 'dd.mm.yy'});
|
|
$.datepicker.setDefaults($.datepicker.regional['fr-CH']);
|
|
}); |