diff options
author | Felix Nagel <info@felixnagel.com> | 2013-04-02 19:42:19 +0200 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2013-04-02 19:42:19 +0200 |
commit | 73c7342bc4418a902bf021c89e7d2c43172e004e (patch) | |
tree | 1c4d622cc91c2cfb76a0ee1e5977ac2b03799551 /demos | |
parent | 26c528a4a3b712760792c62b005307a2fe0f6ba6 (diff) | |
parent | 09b3533910e887377fc87126608db1ded06f38f6 (diff) | |
download | jquery-ui-73c7342bc4418a902bf021c89e7d2c43172e004e.tar.gz jquery-ui-73c7342bc4418a902bf021c89e7d2c43172e004e.zip |
Merge branch 'master' into selectmenu
Diffstat (limited to 'demos')
-rw-r--r-- | demos/datepicker/localization.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/datepicker/localization.html b/demos/datepicker/localization.html index c5e6dd0fd..67d55fd94 100644 --- a/demos/datepicker/localization.html +++ b/demos/datepicker/localization.html @@ -15,7 +15,6 @@ <link rel="stylesheet" href="../demos.css"> <script> $(function() { - $.datepicker.setDefaults( $.datepicker.regional[ "" ] ); $( "#datepicker" ).datepicker( $.datepicker.regional[ "fr" ] ); $( "#locale" ).change(function() { $( "#datepicker" ).datepicker( "option", @@ -28,8 +27,9 @@ <p>Date: <input type="text" id="datepicker"/> <select id="locale"> - <option value="ar">Arabic (‫(لعربي</option> + <option value="ar">Arabic (‫(العربية</option> <option value="zh-TW">Chinese Traditional (繁體中文)</option> + <option value="">English</option> <option value="fr" selected="selected">French (Français)</option> <option value="he">Hebrew (‫(עברית</option> </select></p> |