2.9.2 (05 August, 2016)
- Fix for #120 (when applied to multiple elements options might be changed during initialization of one element and then used in another, fixed by deep copy of options)
- Added support for numeric (Unix timestamp in milliseconds) dates
2.9.1 (24 June, 2016)
- Fix for Twitter Bootstrap and UIkit integration didn't work properly, fixes #73
- In case of multiple dates open on the last one instead of the first (seems more natural), fixes first part of #74
- Added support for
default: false
forrange
andmultiple
modes, fixes second part of #74 and #89 - Fire
change
event when filling empty input on on first open, fixes #77 - Small fix for
transparent
in SCSS - Consistent use of namespaced events from configuration
- Added information about touch devices support to readme
2.9.0 (04 February, 2016)
- Added 'title_format' option
- Added NPM support
2.8.0 (08 April, 2015)
- Added support for no default date #70, thanks to Amar Syla for pull request!
2.7.0 (31 March, 2015)
- Added UMD support #63, thanks to Przemysław Piątek for pull request!
2.6.5 (24 March, 2015)
- Mobile Safari issue, fixes #50
2.6.4 (04 March, 2015)
- Method 'set_date' does not update input value, fixes #53
- Fix for input+range+hide_on_select, fixes #56
- Fix for disabled dates + bootstrap, fixes #59
2.6.3 (21 January, 2015)
- Protect modification of internal date in
render
event callback. - Fix for
update
event onflat: true
instances.
2.6.2 (15 January, 2015)
- Fix for bug when
min
andmax
were not specified and forced datepicker to stuck at 1970, fixes #49
2.6.1 (13 January, 2015)
- Fix for bug when specified
max
date in the middle of the month caused inability to switch to that month
2.6.0 (13 December, 2014)
- New parameter
$background-hover
added toscss
style file - Fix wrong class on selected months and years (
pmu-today
instead ofpmu-selected
) - New
default_date
option - Fix for
$background-hover
default color - Fix for resetting interval to 1 date with combination of
flat:false
andhide_on_select:true
2.5.1 (08 September, 2014)
- Single mode check if options.date is array (take first element of array) #35
2.5.0 (23 August, 2014)
- Fix for The month before min date should not display #32
- events namespacing
- touch support (
trigger_event
option defaults toclick touchstart
) destroy
method, fixes #30- current date highlighting in range mode
- new option
select_day
(alsoselect_month
no longer depends onselect_year
), fixes #29 - account min/max options in months and years views
- huge refactoring and fixes for various found small bugs
- Fix for pmu-{next || prev} clicktarget unreachable with icon, issue #33
2.4.3 (05 August, 2014)
- Fix for broken date parsing in last version
2.4.2 (16 July, 2014)
- More correct fix for NaN instead of dates and months names when wrong data placed in input field
2.4.1 (11 July, 2014)
- Fix for NaN instead of dates and months names when wrong data placed in input field, fixes #26 and #27
2.4.0 (01 July, 2014)
- Add methods prev/next for external call
2.3.0 (29 June, 2014)
- new options
select_year
andselect_month
- bower config added
- New event
fill
event added - New scss parameter for color of selected date
- UIkit integration
- Fix for issue #20: Invoking clear in range mode
- Fix for parsing formatted date when using months
- Correct cyrillic and any other symbols support in months names
- Added support of custom format in
formatted
argument forget_date
method - Twitter Bootstrap integration
- Hide previous/next buttons when necessary if min/max options specified, closes #17
2.2.3 (January 18, 2014)
- Fix for issue #7: Doesn't close when focus is lost from input field
- Fix for issue #8: NaN is appearing instead of numbers
2.2.2 (January 11, 2014)
- update, get_date, set_date methods are not working
2.2.1 (January 08, 2014)
- Fix for issue #4): Callbacks only apply to first of original selector
2.2.0 (January 08, 2014)
- Automatic getting and setting value when applied to input (fixes issue #3)
- New
separator
option.
2.1.2 (November 29, 2013)
- Positioning fix
2.1.1 (November 25, 2013)
- Fixed typo
2.1.0 (November 21, 2013)
- Current day marked with class
pmu-today
and has its own color settings - Bad input ignored, today's date assumed
- Disabled text selection
- Arrows only on first and last calendars
- New
min
andmax
options - New
hide_on_select
option
2.0.1 (November 21, 2013)
- Large internal refactoring, hopefully code now is more clear, consistent and understandable.
this
in any callback will be the same element, on which pickmeup() was called (actually, the same for internal functions).- Current options (for whatever reason) can be accessed as
$('...').data('pickmeup-options')
. - Root pickmeup element (jQuery collection object) can be accessed as
$('...').get(0).pickmeup
or directlythis.pickmeup
if inside callback.
1.0.0 (November 16, 2013)
- Initial release