diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 2fd96f9bd..fdd173e80 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -3,6 +3,7 @@ - fixed #10564: edit branch progress bar goes kablooey - fixed #10565: Survey: add question doing double-create - fixed Photo resizing bugs with the Story asset. + - Enabled better month and year navigation in the YUI date picker. (Tom Beharrell) 7.7.11 - Fixed a bug where empty version tags were not deleted. (Martin Kamerbeek / Oqapi) diff --git a/www/extras/yui-webgui/build/datepicker/datepicker.js b/www/extras/yui-webgui/build/datepicker/datepicker.js index 5c0e3b606..607e807a3 100644 --- a/www/extras/yui-webgui/build/datepicker/datepicker.js +++ b/www/extras/yui-webgui/build/datepicker/datepicker.js @@ -19,7 +19,8 @@ YAHOO.WebGUI.Form.DatePicker = { DATE_RANGE_DELIMITER: '/', MDY_YEAR_POSITION: 1, MDY_MONTH_POSITION: 2, - MDY_DAY_POSITION: 3 + MDY_DAY_POSITION: 3, + NAVIGATOR: true }; if (window.webguiFirstDayOfWeek) { config.START_WEEKDAY = window.webguiFirstDayOfWeek;