diff options
author | Aleksander Machniak <alec@alec.pl> | 2015-01-23 09:49:47 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2015-01-23 09:49:47 +0100 |
commit | 686ff4b538b3fc4f0c632b1d35a123b2ee3770cc (patch) | |
tree | 4d35c1fb565b857a912ce23df2f2b37a43b09e9e /program/js/app.js | |
parent | 5d42a9353b3df5e08b7dfc2ac6a92978a89cceca (diff) |
Fix keyboard navigation and css in datepicker widget across many Firefox versions
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index 5dd9272a2..1028b7764 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -5173,10 +5173,10 @@ function rcube_webmail() dateFormat: this.env.date_format, changeMonth: true, changeYear: true, - yearRange: '-100:+10', + yearRange: '-120:+10', showOtherMonths: true, selectOtherMonths: true, - onSelect: function(dateText) { $(this).focus().val(dateText) } +// onSelect: function(dateText) { $(this).focus().val(dateText); } }); $('input.datepicker').datepicker(); } |