aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.datepicker.js
Commit message (Collapse)AuthorAgeFilesLines
* Datepicker: Don't set _curInst in hideDatepicker. Fixes #8174 - jQuery ↵Scott González2012-04-031-2/+0
| | | | datepicker is stuck open if label is clicked from open state.
* Protect all copyright notices against minificationJo Liss2012-04-021-1/+1
| | | | | | | For instance, this is useful for the jquery-ui-rails gem, which does not use jQuery UI's own minification, but relies on Rails to minify the files where necessary. Rails in turn uses UglifyJS for JS and YUI for CSS, both of which respect the /*! ... */ convention.
* Updated copyright year.Scott González2012-03-081-1/+1
|
* Use hard tabs for indentation consistentlyTrey Hunner2012-02-271-8/+8
|
* Datepicker: modified a catch variable to no longer mask an existing variable ↵Jasvir Nagra2012-02-241-2/+2
| | | | in scope. Fixed #8138 - datepicker: IE8 does not create a new scope for catch blocks and will cause
* Datepicker: Use 'that' instead of 'self'. Partial fix for #5404 - remove ↵Scott González2012-02-121-4/+3
| | | | uses of 'var self = this;'
* Datepicker: Allow descendant elements in triggers. Fixes #8107 - Closing the ↵Scott González2012-02-081-1/+1
| | | | datepicker via the provided button does not work in Chrome when the button contains other non-text elements.
* Datepicker: added check to account for multiple pickers on one page. Fixed ↵ryanolton2012-01-121-1/+4
| | | | #5818 – multiple DatePickers won't trigger close event
* Merge pull request #463 from jason-oster/masterScott González2011-11-211-1/+2
|\ | | | | Merge #463.
| * Datepicker: Fix `this` reference in _hideDatepicker(). Fixed #7722 - ↵Jay Oster2011-09-151-1/+2
| | | | | | | | Datepicker: Does not properly clear current instance when hidden.
* | Datepicker: Added additional check to checkExternalClick to work when ↵kborchers2011-09-121-15/+14
|/ | | | clicking in another datepicker and removed old fix. Fixes #7686 - infinite loop when onclose event shows a second calendar
* Datepicker: Revert "Datepicker: Removing unnessecary typeof check. Fixed ↵Scott González2011-08-101-1/+2
| | | | | | #6669 - Datepicker: _selectDate restores focus to non-object" Fixes #7623 - DatePicker reappears after selection in ie8. This reverts commit 5f0a2f01c4609315ab66158191d3f9bd420f827f.
* Datepicker: Added ability to stop datepicker from beforeShow. Fixes #7602 - ↵Karl Kirch2011-08-091-1/+7
| | | | Ability to stop datepicker from appearing with beforeShow event handler.
* Revert "Datepicker: Added onSelect.apply() call to _setDate method if ↵Scott González2011-08-091-8/+0
| | | | | | onSelect is defined. Fixed #6264 - Datepicker: onSelect does not fire when setDate is called" This reverts commit effdd5d19c534f8445ebafe4212278c4366b0041.
* Datepicker: Removed click handling for month and year dropdowns. Fixes #6198 ↵Scott González2011-08-011-15/+0
| | | | | | - Datepicker Month and Year dropdowns in IE have to click twice. Thanks jdufresne
* Merge branch 'master' into core-1.6.1Scott González2011-07-251-6/+41
|\ | | | | | | | | | | | | | | | | Conflicts: demos/menubar/default.html tests/unit/autocomplete/autocomplete.html tests/visual/effects/effects.all.html ui/jquery.ui.menu.js ui/jquery.ui.popup.js
| * Datepicker: show inline datepicker setting explicit display:block instead of ↵Richard D. Worth2011-07-191-1/+3
| | | | | | | | using .show() in case it is disconnected. Fixed #7552 - A Datepicker created on a detached div has zero height
| * Merge remote branch 'pgraham/master'Jörn Zaefferer2011-06-281-1/+4
| |\
| | * Updated guard against unparsed characters to allow extra characters as long ↵Philip Graham2011-06-281-1/+4
| | | | | | | | | | | | | | | | | | as they are separated from the date by whitespace. This maintains compatibility with timepicker extensions. Fixes #7244 - Datepicker: parseDate() does not throw an exception for long years
| * | Datepicker: Added onSelect.apply() call to _setDate method if onSelect is ↵marcneuwirth2011-06-281-0/+8
| | | | | | | | | | | | defined. Fixed #6264 - Datepicker: onSelect does not fire when setDate is called
| * | Datepicker: Added onSelect.apply() call to _doKeyDown method when enter ↵marcneuwirth2011-06-281-0/+7
| |/ | | | | | | button pushed if onSelect is defined. Fixed #7124 - Datepicker: onSelect does not fire when enter button is pushed
| * Datepicker: Removing unnessecary typeof check. Fixed #6669 - Datepicker: ↵marcneuwirth2011-06-221-2/+1
| | | | | | | | _selectDate restores focus to non-object
| * Merge pull request #353 from kborchers/bug_7043Scott González2011-06-161-1/+8
| |\ | | | | | | Datepicker: Calculate the max number of rows necessary when displaying months. Fixes #7043 - Datepicker: Using multiple months always renders 6 rows of dates even if only 5 are needed
| | * Datepicker: Reset this.maxRows (rows in a month) on each row in a multi-row ↵kborchers2011-06-131-0/+1
| | | | | | | | | | | | datepicker.
| | * Datepicker: Calculate the max number of rows necessary when displaying ↵kborchers2011-05-271-1/+7
| | | | | | | | | | | | months. Fixes #7043 - Datepicker: Using multiple months always renders 6 rows of dates even if only 5 are needed
| * | Datepicker: Added checks for the disabled option. Fixed #5665 - Datepicker: ↵kborchers2011-05-201-1/+10
| |/ | | | | | | Disabled parameter doesn't work
* | Datepicker: Use .attr() for size.Scott González2011-07-251-1/+1
| |
* | .attr() -> .prop()Scott González2011-06-081-3/+3
|/
* There's no guard against unparsed characters at the end of the date string, ↵Jörn Zaefferer2011-05-181-0/+3
| | | | | | any extra characters are just ignored Fixes #7244 - Datepicker: parseDate() does not throw an exception for long years
* Merge remote branch 'kzys/trac-6656'Jörn Zaefferer2011-05-181-4/+12
|\
| * Datepicker: onClose callback should be triggered by show. Fixed #6656 - ↵Kato Kazuyoshi2011-05-071-4/+12
| | | | | | | | onClose event not triggered.
* | Datepicker: Made the day of year calculator be more accurate. Fixes #6827 - ↵Jay Merrifield2011-05-161-1/+1
| | | | | | | | Datepicker: Incorrect value for "oo" during Daylight Saving Time.
* | Datepicker: removed conditional mozilla browser check block. Fixes #7322 - ↵Andrew Powell2011-05-121-9/+4
| | | | | | | | Year selector disappears after setting an option in Firefox
* | Revert "Datepicker: Fixed #7043 - Using multiple months always renders 6 ↵Scott González2011-05-121-1/+1
| | | | | | | | | | | | rows of dates even if only 5 are needed." This reverts commit ac459ff7df4904cb8601d4efb95107177ecb40e0.
* | Merge pull request #220 from kzys/trac-6850Scott González2011-05-111-0/+4
|\ \ | | | | | | Fixed #6850 - Disable datepicker should disable month and year dropdowns.
| * | Datepicker: Disabled datepicker should disable own select element too. Fixed ↵Kato Kazuyoshi2011-05-071-0/+4
| | | | | | | | | | | | #6850 - Disable datepicker should disable month and year dropdowns.
* | | Datepicker: Removed duplicate call to _updateDatepicker when changing option ↵Garrison Locke2011-05-111-1/+2
| | | | | | | | | | | | in Firefox. Fixed #7322 - datepicker: Year would disappear when changing option.
* | | Datepicker: Fixed #7043 - Using multiple months always renders 6 rows of ↵Kato Kazuyoshi2011-05-071-1/+1
| |/ |/| | | | | dates even if only 5 are needed.
* | Datepicker: Moved the setting of _datepickerShowing to after postProcess to ↵kborchers2011-05-061-1/+1
|/ | | | prevent being able to tab away leaving the datepicker open. Fixed #6775 - DatePicker remains open when tabbing out
* Merge pull request #200 from kzys/trac-6704-2Scott González2011-05-041-2/+1
|\ | | | | Fixed #6704 - Display overflow when multiple datepickers have different numberOfMonths.
| * Datepicker: Remove old "ui-datepicker-multi-N" before add new one. Fixed ↵Kato Kazuyoshi2011-05-051-2/+1
| | | | | | | | #6704 - Display overflow when multiple datepickers have different numberOfMonths.
* | Datepicker: Greedy matching in month name. Fixed #7062 - ↵Kato Kazuyoshi2011-05-051-7/+17
|/ | | | $.datepicker.parseDate does not work for some locale date strings.
* Datepicker: bind hover events using delegate. Fixed #7256 - minimize event ↵adambaratz2011-05-021-20/+27
| | | | binding in Datepicker initialization.
* Datepicker: Only generate yearshtml once. Fixes #7176 - Datepicker shows ↵Scott González2011-04-041-34/+36
| | | | only single year in year dropdown if numberOfMonths > 1.
* Datepicker: Changed a comment that causes problems with YUI Compressor. ↵Scott González2011-03-181-1/+1
| | | | Fixes #7129 - Datepicker: Can't minify with YUI Compressor.
* Datepicker: Updated to check for new or old style effects (see #7103).gnarf2011-03-151-2/+6
|
* Datepicker: Reformat minDate/maxDate when dateFormat changes. Fixes #7009 - ↵Adam Parod2011-03-071-0/+7
| | | | Reformat minDate/maxDate when dateFormat changes.
* Datepicker: Account for daylight saving when calculating number of days in a ↵Scott González2011-02-161-1/+1
| | | | | | month. Fixes #6978 - In Calender for march 2011 dates showing till 5th only. Thanks jomyjohn
* Datepicker: prevent datepicker initialization on empty jquery collection and ↵Dan Heberden2011-02-151-1/+6
| | | | add unit test. Fixed #6976 - datepicker creates extra dom element with empty object
* Datepicker: Properly handle datepickers attached to inputs that are hidden ↵Scott González2011-02-151-1/+1
| | | | using CSS. Fixes #6988 - Datepicker: Treat all hidden text fields the same.